/* Hide ALL native video UI globally (iOS Safari gray circle etc.) */
video::-webkit-media-controls,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-overlay-play-button,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-fullscreen-button,
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-timeline,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display,
video::-webkit-media-controls-volume-slider-container {
    display: none !important;
    -webkit-appearance: none;
    appearance: none;
    opacity: 0 !important;
    pointer-events: none !important;
}

@font-face {
    font-family: 'Druk Wide';
    src: url('../../fonts/Druk Wide-Medium-Web.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

:root {
    --Text-primary: black;
    --Text-white: white;
    --Text-secondary: #7E7E7E;
    --background-dark: #F4F5F0;
    --background-white: white;
    --background-white-60: rgba(255, 255, 255, 0.60);
    --background-stroke: rgba(204, 204, 202, 0.30);
    --Button-primary: #FFF066;
    --Button-secondary: black;
    --Icons-black: black;
    --Icons-white: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-dark);
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.header {
    width: 100%;
    align-self: stretch;
    padding: 0;
    position: relative;
    z-index: 20;
}

.header-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: calc(366px * 4 + 24px * 3);
    margin: 0 auto;
}

.logo-section {
    display: flex;
    justify-content: flex-start;
    justify-self: start;
    align-items: center;
    gap: 10px;
    flex-shrink: 1;
    min-width: 0;
}

.logo {
    color: var(--Text-primary);
    font-size: 26px;
    font-family: 'Druk Wide', sans-serif;
    font-weight: 700;
    word-wrap: break-word;
}

.icons-section {
    width: 121px;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    display: none;
}

.icons-wrapper {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.icon-button {
    width: 48px;
    height: 48px;
    padding: 0;
    background: transparent;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s;
    position: relative;
}

.icon-button:hover {
    opacity: 0.8;
}

.icon-image {
    width: 48px;
    height: 48px;
    display: block;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    transform: translateX(-48px);
}

.android-tooltip {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--background-white-60);
    backdrop-filter: blur(30px);
    color: var(--Text-primary);
    padding: 8px 16px;
    border-radius: 12px;
    font-family: 'Druk Wide', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.icon-button:hover .android-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.android-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--background-white-60);
}

.actions-section {
    display: flex;
    justify-content: flex-end;
    justify-self: end;
    align-items: center;
    gap: 8px;
    flex-shrink: 1;
    min-width: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    gap: 24px;
}
.header-nav-link {
    color: #888;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.header-nav-link:hover { color: #000; }
.header-nav-link--active { color: #000; }

.app-store-badge {
    height: 48px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.btn {
    padding: 12px 24px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.8;
}

.btn-text {
    background: transparent;
    color: var(--Text-primary);
}

.btn-fill {
    background: var(--Button-secondary);
    color: var(--Text-white);
    font-size: 16px;
}

.actions-section .btn-fill,
.btn-primary {
    font-size: 16px;
}

.hero-section {
    width: 100%;
    min-height: 100vh;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 72px;
    padding: 10px 10px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 100%;
    padding-top: 32px;
    padding-bottom: 4px;
    padding-left: 110px;
    padding-right: 110px;
    position: relative;
    background: var(--background-white);
    border-radius: 32px;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 72px;
    overflow: visible;
}

.hero-content {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-decor {
    position: absolute;
    pointer-events: none;
    object-fit: contain;
    z-index: 1;
    transition: transform 0.35s ease-in-out, opacity 0.25s ease-in-out;
    opacity: 1;
    will-change: transform, opacity;
}

.hero-decor.hide-behind-phone {
    z-index: 0;
    opacity: 0;
    transition: transform 0.35s ease-in-out, opacity 0.25s ease-in-out 0.15s;
}

.hero-decor-1.hide-behind-phone {
    transform: translateX(var(--target-x, 578.5px)) translateY(var(--target-y, 515.5px)) rotate(-14deg);
    transform-origin: center center;
}

.hero-decor-3.hide-behind-phone {
    transform: translateX(var(--target-x, -400.5px)) translateY(var(--target-y, 515.5px)) rotate(7deg);
    transform-origin: center center;
}

.hero-decor-2.hide-behind-phone {
    transform: translateX(var(--target-x, 478.5px)) translateY(var(--target-y, 315.5px));
    transform-origin: center center;
}

.hero-decor-4.hide-behind-phone {
    transform: translateX(var(--target-x, -300.5px)) translateY(var(--target-y, 315.5px)) rotate(8deg);
    transform-origin: center center;
}

.hero-decor-5.hide-behind-phone {
    transform: translateX(var(--target-x, 358.5px)) translateY(var(--target-y, 132.5px));
    transform-origin: center center;
}

.hero-decor-6.hide-behind-phone {
    transform: translateX(var(--target-x, -175.5px)) translateY(var(--target-y, 151.5px));
    transform-origin: center center;
}

.hero-decor-1 {
    width: 157px;
    height: 157px;
    left: 80px;
    top: 360px;
    transform: rotate(-14deg);
    transform-origin: center center;
}

.hero-decor-2 {
    width: 157px;
    height: 157px;
    left: 180px;
    top: 560px;
}

.hero-decor-5 {
    width: 140px;
    height: 143px;
    left: 300px;
    top: 700px;
    bottom: auto;
}

.hero-decor-3 {
    width: 157px;
    height: 146.66px;
    right: 70px;
    top: 310px;
    transform: rotate(7deg);
    transform-origin: center center;
}

.hero-decor-4 {
    width: 157px;
    height: 157px;
    right: 180px;
    top: 560px;
    transform: rotate(8deg);
    transform-origin: center center;
}

.hero-decor-6 {
    width: 162px;
    height: 162px;
    right: 300px;
    top: 700px;
    bottom: auto;
}

@media (min-width: 769px) and (max-width: 1303px) {
    .hero-decor-5,
    .hero-decor-6 {
        display: none;
    }
}

@media (max-width: 1400px) {
    .hero-decor-1 { top: 400px; }
    .hero-decor-3 { top: 450px; }
    .hero-decor-2, .hero-decor-4 { top: 560px; }
}

@media (max-width: 1200px) {
    .hero-decor-1 { top: 400px; }
    .hero-decor-3 { top: 450px; }
    .hero-decor-2, .hero-decor-4 { top: 560px; }
}

.hero-text {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

.hero-title {
    width: 1038px;
    max-width: 100%;
    text-align: center;
    color: var(--Text-primary);
    font-size: 72px;
    font-family: 'Druk Wide', sans-serif;
    font-weight: 500;
    line-height: 86px;
    word-wrap: break-word;
}

.hero-description {
    width: 550px;
    max-width: 100%;
    text-align: center;
    color: var(--Text-primary);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 26px;
    word-wrap: break-word;
}

.btn-primary {
    width: 180px;
    height: 60px;
    padding: 16px 24px;
    background: var(--Button-primary);
    border-radius: 16px;
    color: var(--Text-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-cta-button {
    width: auto;
    height: auto;
    padding: 18px 24px;
}

.hero-tabs {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
}

.hero-tab {
    width: 116px;
    height: 36px;
    padding: 11px 10px;
    border-radius: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.hero-tab:not(:last-child) {
    margin-right: 1px;
}

.hero-tab.active {
    background: #ECECE5;
}

.hero-tab:hover:not(.active) {
    background: rgba(236, 236, 229, 0.5);
}

.hero-tab-text {
    color: var(--Text-primary);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 24px;
    word-wrap: break-word;
}

.phone-mockup {
    width: 393px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phones-container {
    width: 440px;
    height: 1050px;
    position: relative;
    overflow: visible;
    background: transparent;
    border-radius: 40px;
}

.phones-container::before {
    display: none;
}

.phone-frame {
    width: 440px;
    height: 1050px;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    overflow: visible;
    border-radius: 40px;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.phone-frame.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hero-frame-video {
    width: 100%;
    aspect-ratio: 406 / 865;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 48px;
    border: 8px solid black;
    box-sizing: border-box;
    background: black;
}

.hero-video-wrap {
    position: relative;
    width: 100%;
    border-radius: 48px;
    overflow: hidden;
}

.video-preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

.video-preloader.active {
    opacity: 1;
    visibility: visible;
}

@keyframes videoSpinDots {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.video-preloader::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 240, 102, 0.25);
    border-top-color: #FFF066;
    border-radius: 50%;
    box-sizing: border-box;
    transform: translate(-50%, -50%);
    animation: videoSpinDots 0.9s linear infinite;
    background: transparent;
}

.phone-status-bar {
    width: 390px;
    height: 54px;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.status-time {
    width: 35.45px;
    height: 21.79px;
    text-align: center;
    color: var(--Text-primary);
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 22px;
}

.status-icons {
    display: flex;
    gap: 4px;
    align-items: center;
}

.status-icon {
    width: 17px;
    height: 12px;
    background: var(--Text-primary);
    border-radius: 2px;
}

.status-icon:first-child {
    width: 20.84px;
    height: 8.92px;
    border-radius: 2.50px;
}

.status-icon:nth-child(2) {
    width: 24.81px;
    height: 12.88px;
    border-radius: 4.30px;
    border: 1px var(--Text-primary) solid;
    opacity: 0.35;
    background: transparent;
}

.status-icon:nth-child(3) {
    width: 1.32px;
    height: 4.04px;
    opacity: 0.40;
}

.phone-content {
    width: 393px;
    padding: 85px 22px 0;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phone-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.phone-greeting {
    align-self: stretch;
    text-align: center;
    color: var(--Text-primary);
    font-size: 30px;
    font-family: 'Druk Wide', sans-serif;
    font-weight: 700;
    line-height: 30px;
    word-wrap: break-word;
}

.phone-user-info {
    position: absolute;
    left: 130px;
    top: 156px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 9999px;
    object-fit: cover;
}

.user-name {
    color: var(--Text-primary);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 19.20px;
    word-wrap: break-word;
    margin-top: 8px;
}

.phone-card {
    width: 353px;
    min-height: 360px;
    padding: 32px;
    background: white;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
}

.card-title {
    width: 320.61px;
    text-align: center;
    color: var(--Text-primary);
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
}

.card-image-container {
    align-self: stretch;
    height: 203px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image {
    width: 264px;
    height: 238.10px;
    object-fit: cover;
    border-radius: 12px;
}

.hero-phone-video {
    width: 264px;
    height: 238.10px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    border: 6px black solid;
    box-sizing: border-box;
}

.card-info {
    color: var(--Text-secondary);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 22px;
    word-wrap: break-word;
}

.phone-button {
    width: 100%;
    height: 60px;
    padding: 0 32px;
    background: var(--Button-secondary);
    border-radius: 20px;
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.phone-button:hover {
    opacity: 0.8;
}

.phone-button div {
    text-align: center;
    color: var(--Text-white);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 19.20px;
    word-wrap: break-word;
}

.phone-bottom-nav {
    width: 392px;
    position: absolute;
    left: 1px;
    bottom: 0;
    background: var(--background-dark);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.phone-bottom-nav > div:first-child {
    align-self: stretch;
    padding: 0 20px;
    background: var(--background-dark);
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.nav-item {
    flex: 1 1 0;
    height: 60px;
    padding: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.nav-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.nav-item.active .nav-icon::after {
    content: '';
    width: 22px;
    height: 22px;
    left: 1px;
    top: 1px;
    position: absolute;
    border-radius: 1px;
    outline: 2px var(--Text-primary) solid;
    outline-offset: -1px;
}

.nav-item:not(.active) .nav-icon::after {
    content: '';
    width: 22px;
    height: 22px;
    left: 1px;
    top: 1px;
    position: absolute;
    border-radius: 1px;
    outline: 2px #A1A09F solid;
    outline-offset: -1px;
}

.nav-indicator {
    align-self: stretch;
    height: 32px;
    position: relative;
}

.nav-indicator::after {
    content: '';
    width: 134px;
    height: 5px;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    position: absolute;
    background: var(--Text-primary);
    border-radius: 10px;
}

.reasons-section {
    width: 100%;
    padding: 104px 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 72px;
}

.reasons-title {
    align-self: stretch;
    text-align: center;
    color: var(--Text-primary);
    font-size: 56px;
    font-family: 'Druk Wide', sans-serif;
    font-weight: 500;
    line-height: 64px;
    word-wrap: break-word;
}

.reasons-content {
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 56px;
    max-width: 100%;
}

.reasons-cards {
    flex: 1;
    max-width: 660px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.reason-card {
    align-self: stretch;
    padding: 48px;
    background: var(--background-white-60);
    border-radius: 24px;
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.reason-header {
    align-self: stretch;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
}

.reason-percent {
    color: var(--Text-primary);
    font-size: 22px;
    font-family: 'Druk Wide', sans-serif;
    font-weight: 500;
    line-height: 26px;
    word-wrap: break-word;
    flex-shrink: 0;
}

.reason-title-text {
    flex: 1;
    min-width: 0;
    color: var(--Text-primary);
    font-size: 22px;
    font-family: 'Druk Wide', sans-serif;
    font-weight: 500;
    line-height: 26px;
    word-wrap: break-word;
}

.reason-description {
    align-self: stretch;
    color: var(--Text-primary);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
}

.reasons-video-container {
    flex: 1;
    max-width: 564px;
    min-width: 0;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    align-self: stretch;
    position: relative;
}

.reasons-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: black;
}

.features-section {
    width: 100%;
    padding: 104px 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 72px;
}

.features-title {
    width: 100%;
    text-align: center;
    color: var(--Text-primary);
    font-size: 56px;
    font-family: 'Druk Wide', sans-serif;
    font-weight: 500;
    line-height: 64px;
    word-wrap: break-word;
}

.features-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 32px;
    max-width: 1400px;
    align-items: stretch;
    justify-items: stretch;
    margin: 0 auto;
}

.features-carousel-wrapper {
    width: 100%;
    padding-bottom: 10px;
}

.features-dots {
    display: none;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.feature-card {
    width: 100%;
    height: 100%;
    min-width: 300px;
    padding-top: 48px;
    padding-bottom: 80px;
    padding-left: 40px;
    padding-right: 40px;
    background: white;
    overflow: visible;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 32px;
    position: relative;
}

.feature-phone-mockup {
    width: 312px;
    height: 676px;
    position: relative;
    background: transparent;
    overflow: visible;
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
}

.phone-screen {
    width: 312px;
    height: 676px;
    position: relative;
    background: var(--background-dark);
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    border-bottom-right-radius: 36px;
    border-bottom-left-radius: 36px;
    overflow: visible;
}

.phone-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-video-slot {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.feature-video-wrap {
    display: flex;
    justify-content: center;
}

.phone-video {
    width: 100%;
    max-width: 312px;
    aspect-ratio: 420 / 910;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 36px;
    border: 8px solid black;
    box-sizing: border-box;
    background: black;
}

.phone-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14.25px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4.27px;
}

.ingredient-tags {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4.27px;
}

.ingredient-tag {
    height: 25.65px;
    padding: 7.84px 7.12px;
    background: var(--background-dark);
    border-radius: 7.12px;
    text-align: right;
    color: var(--Text-primary);
    font-size: 11.40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 15.67px;
    word-wrap: break-word;
}

.ingredient-tag.analyzing {
    background: var(--Button-primary);
}

.feature-description {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    margin-top: -176px;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    z-index: 10;
    background: white;
    padding-top: 26px;
    padding-bottom: 26px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.feature-icon {
    width: 36px;
    height: 36px;
    padding: 4px;
    background: var(--Button-primary);
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    top: var(--feature-icon-offset, 20px);
}

.feature-icon-img {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}

.feature-text {
    width: 100%;
    text-align: center;
    color: var(--Text-primary);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 26px;
    word-wrap: break-word;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: relative;
    top: var(--feature-text-offset, 20px);
}

@media (max-width: 768px) {
    .hero-section { overflow: visible !important; }
    
    .hero-container {
        width: 100%;
        max-width: 100%;
        padding-top: 16px;
        padding-bottom: 0px;
        margin-bottom: 0;
        padding-left: 30px;
        padding-right: 30px;
        gap: 40px;
        overflow: visible !important;
    }
    
    .header { padding: 0; }
    .header-nav { display: none; }

    .header-container {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 8px;
        min-width: 0;
    }
    
    .logo-section {
        flex-shrink: 1;
        min-width: 0;
        width: auto;
    }
    
    .logo {
        font-size: 26px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .icons-section {
        flex-shrink: 0;
        width: auto;
        min-width: 0;
    }
    
    .icon-image { width: 40px; height: 40px; }
    
    .actions-section {
        flex-shrink: 1;
        min-width: 0;
        gap: 4px;
    }

    .app-store-badge { height: 40px; }
    
    .btn {
        padding: 10px 16px;
        font-size: 14px;
        white-space: nowrap;
        flex-shrink: 1;
        min-width: 0;
    }

    .actions-section .btn-fill { font-size: 16px; }
    
    .btn-text { padding: 10px 12px; display: none; }
    
    .btn-primary {
        width: 100%;
        max-width: 472px;
        padding: 16px 24px;
        font-size: 16px;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        line-height: 24px;
        word-wrap: break-word;
        white-space: normal;
        margin-top: 20px;
    }

    .hero-cta-button {
        width: 100%;
        max-width: 472px;
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .hero-title {
        font-size: 42px;
        font-family: 'Druk Wide', sans-serif;
        font-weight: 600;
        line-height: 46.20px;
        word-wrap: break-word;
        color: black;
    }
    
    .hero-description {
        width: 100%;
        padding: 0 20px;
        margin-top: 10px;
    }
    
    .hero-tabs { flex-wrap: nowrap; gap: 8px; }
    
    .hero-tab {
        width: auto;
        min-width: 100px;
        padding: 11px 16px;
        transition: none !important;
    }
    
    .hero-tab:not(:last-child) { margin-right: 0; }
    
    .phone-mockup {
        width: 100vw !important;
        max-width: 100vw !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0 !important;
    }
    
    .phones-container {
        width: 100vw !important;
        max-width: 100vw !important;
        height: auto !important;
        aspect-ratio: auto !important; 
        overflow-x: auto !important;
        overflow-y: visible !important; 
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        display: flex;
        flex-direction: row;
        gap: 40px !important; 
        position: relative;
        z-index: 5 !important; 
        border-radius: 0 !important;
        background: transparent !important; 
        padding-top: 10px !important; 
        padding-bottom: 10px !important; 
        padding-left: calc(50vw - 140px) !important; 
        padding-right: calc(50vw - 140px) !important;
        box-sizing: border-box !important;
        margin: 0 !important; 
    }
    
    .phones-container::before { display: none !important; }
    .phones-container::-webkit-scrollbar { display: none; }
    
    .phone-frame {
        flex: 0 0 280px !important; 
        width: 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
        height: 640px !important;
        position: relative;
        scroll-snap-align: center; 
        scroll-snap-stop: always;
        border-radius: 32px !important; 
        outline: none !important;
        overflow: visible !important;
        opacity: 1 !important;
        transform: translateX(0) !important;
        pointer-events: auto;
        z-index: 1;
        transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        box-sizing: border-box !important;
        margin: 0 !important; 
    }
    
    .phone-frame::after { display: none; }
    .phone-frame.active { z-index: 2; }
    .phone-frame:not(:first-child) { margin-left: 0; }
    
    .hero-frame-video {
        width: 100% !important;
        aspect-ratio: 404 / 863;
        object-fit: cover !important;
        object-position: top center;
        border-radius: 10vw !important;
        border: 2vw solid black;
        box-sizing: border-box;
    }
    .hero-video-wrap { border-radius: 10vw; }
    
    .phone-status-bar {
        width: calc(100% - 6px);
        max-width: 468px;
    }
    
    .phone-content {
        width: 100%;
        max-width: 472px;
    }
    
    .hero-decor-1 { width: 80px; height: 82px; left: calc(20px + var(--decor-inset-1, 0px)); right: auto; top: calc(var(--decor-row1-top, 180px) + 28px); }
    .hero-decor-2 { width: 80px; height: 82px; left: calc(20px + var(--decor-inset-2, 0px)); right: auto; top: calc(var(--decor-row2-top, 280px) + 10px); }
    .hero-decor-3 { width: 80px; height: 75px; right: calc(20px + var(--decor-inset-1, 0px)); left: auto; top: calc(var(--decor-row1-top, 180px) + 28px); }
    .hero-decor-4 { width: 80px; height: 82px; right: calc(15px + var(--decor-inset-2, 0px)); left: auto; top: calc(var(--decor-row2-top, 280px) + 10px); }
    .hero-decor-5 { width: 70px; height: 72px; left: calc(15px + var(--decor-inset-3, 0px)); right: auto; top: var(--decor-row3-top, 460px); bottom: auto; display: none; }
    .hero-decor-6 { width: 82px; height: 82px; right: calc(20px + var(--decor-inset-3, 0px)); left: auto; top: var(--decor-row3-top, 460px); bottom: auto; display: none; }
    
    .reasons-section { padding: 60px 20px; gap: 40px; }
    .reasons-title { font-size: 32px; line-height: 40px; }
    .reasons-content { flex-direction: column; gap: 32px; align-items: stretch; }
    .reasons-cards { width: 100%; max-width: 100%; }
    .reason-title-text { width: auto; flex: 1; }
    .reason-header { display: block; }
    .reason-percent, .reason-title-text { display: inline; }
    .reasons-video-container { width: 100%; height: auto; max-width: 564px; align-self: center; }
    .reason-card { padding: 32px 24px; }
    
    .features-section {
        padding: 70px 20px 30px !important;
        gap: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .features-title { font-size: 32px; line-height: 40px; }
    
    .features-carousel-wrapper {
        width: calc(100% + 20px);
        margin: 0 -10px;
        position: relative;
        overflow-x: auto;
        overflow-y: clip;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 10px 10px 10px;
        box-sizing: border-box;
        touch-action: pan-x;
    }
    
    .features-carousel-wrapper::-webkit-scrollbar { display: none; }
    
    .features-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        padding-bottom: 0; 
        align-items: flex-start;
    }
    
    .feature-card {
        flex: 0 0 100%;
        min-width: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        margin: 0;
        padding: 60px;
        box-sizing: border-box;
        border-radius: 42px;
        background: white;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        align-self: stretch;
        width: 100%;
        overflow: visible;
    }
    
    .feature-card .feature-phone-mockup {
        width: 100%;
        max-width: 528px;
        min-width: 0;
        height: auto;
        aspect-ratio: 312 / 676;
        position: relative;
        background: transparent;
        overflow: visible;
        border-top-left-radius: 36px;
        border-top-right-radius: 36px;
        border-bottom-left-radius: 36px;
        border-bottom-right-radius: 36px;
        margin: 0 auto;
        flex-shrink: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .feature-card .phone-screen {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: auto;
        height: auto;
        background: var(--background-dark);
        border-top-left-radius: 36px;
        border-top-right-radius: 36px;
        border-bottom-left-radius: 36px;
        border-bottom-right-radius: 36px;
        overflow: visible;
        display: block;
        margin: 0;
    }
    
    .feature-card .phone-video {
        width: calc(100% - 2px);
        aspect-ratio: 418 / 910;
        object-fit: cover;
        object-position: center center;
        display: block;
        margin: 1px auto -1px;
        border-radius: 10vw;
        border: 2vw solid black;
        box-sizing: border-box;
        background: black;
    }
    .feature-video-wrap { border-radius: 10vw; }
    
    .feature-card .phone-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
        margin: 0 auto;
    }
    
    .feature-card .feature-description { display: none; }

    .features-section .features-dots {
        display: inline-flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 0px;
        width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .features-section .feature-dot {
        width: 6px;
        height: 6px;
        border-radius: 9999px;
        background: #ccc;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.3s ease, width 0.3s ease, height 0.3s ease;
        flex-shrink: 0;
    }

    .features-section .feature-dot.active {
        width: 8px;
        height: 8px;
        background: black;
    }

    /* === ВАШИ ИСПРАВЛЕНИЯ ТАРИФОВ ДЛЯ МОБИЛОК ЗДЕСЬ === */
    /* ====== MOBILE PRICING ====== */

    .try-section {
        padding: 0 !important;
        overflow: visible !important;
        max-width: 100vw !important;
    }

    .try-container {
        width: 100%;
        max-width: 100% !important;
        padding: 0 !important;
        gap: 0 !important;
        background: transparent !important;
        overflow: visible !important;
    }

    .try-content {
        gap: 0 !important;
        overflow: visible !important;
    }

    .try-title {
        font-size: 32px !important;
        line-height: 40px !important;
        padding: 0 20px;
        margin-top: 10px !important;
        margin-bottom: 60px !important;
    }

    .pricing-table {
        display: flex;
        flex-direction: column;
        gap: 0;
        overflow: hidden !important;
        max-width: 100% !important;
    }

    /* Hide desktop left column on mobile */
    .pricing-features {
        display: none !important;
    }

    /* Horizontal scroll carousel */
    .pricing-plan-group {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 20px 10px 20px;
        box-sizing: border-box;
    }

    .pricing-plan-group::-webkit-scrollbar {
        display: none;
    }

    /* Each plan card = full screen width card */
    .pricing-plan {
        flex: 0 0 calc(100vw - 40px) !important;
        min-width: calc(100vw - 40px) !important;
        max-width: calc(100vw - 40px) !important;
        width: calc(100vw - 40px) !important;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        border-radius: 32px !important;
        background: white !important;
        padding: 72px 24px 32px !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .subscription-plan {
        margin-top: 0 !important;
    }

    .weekly-plan,
    .monthly-plan,
    .yearly-plan {
        margin-left: 0 !important;
    }

    .pricing-plan-content {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* Dots navigation */
    .pricing-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 0;
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .pricing-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #ccc;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.3s, width 0.3s, height 0.3s;
    }

    .pricing-dot.active {
        width: 8px;
        height: 8px;
        background: black;
    }

    /* Header: title + trial + price + button -- vertical stack, left-aligned */
    .pricing-plan-header {
        height: auto !important;
        padding: 0 !important;
        gap: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .pricing-plan-meta {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        min-height: 0 !important;
        width: 100% !important;
    }

    /* Remove spacer pseudo-elements */
    .pricing-plan-meta::before,
    .free-plan .pricing-plan-meta::before,
    .weekly-plan .pricing-plan-meta::before {
        display: none !important;
        content: none !important;
    }

    .pricing-plan-badge {
        margin-bottom: 8px !important;
        min-height: 24px !important;
        padding: 2px 10px !important;
        border-radius: 8px !important;
        background: #FFF066 !important;
        color: black !important;
        font-size: 12px !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 700 !important;
        line-height: 20px !important;
        display: inline-block !important;
    }

    .pricing-plan-title {
        font-size: 32px !important;
        line-height: 36px !important;
        text-align: left !important;
        transform: none !important;
        margin-bottom: 0 !important;
        font-family: 'Druk Wide', sans-serif !important;
        font-weight: 500 !important;
    }

    .pricing-plan-trial {
        text-align: left !important;
        margin-top: 4px !important;
    }

    /* Price row: $0 /forever on one baseline */
    .pricing-plan-price {
        margin-top: 12px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        align-items: baseline !important;
        justify-content: flex-start !important;
        width: 100% !important;
        gap: 4px !important;
    }

    .price-amount {
        font-size: 48px !important;
        line-height: 48px !important;
    }

    .price-period {
        font-size: 16px !important;
        line-height: 24px !important;
        margin-bottom: 0 !important;
    }

    /* Full-width button */
    .pricing-button {
        width: 100% !important;
        height: 48px !important;
        min-height: 48px !important;
        max-height: 48px !important;
        border-radius: 16px !important;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        font-size: 16px !important;
        line-height: 48px !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        border: none !important;
        cursor: pointer;
        font-family: 'Inter', sans-serif !important;
        font-weight: 600 !important;
    }

    .pricing-button-free {
        background: #F4F5F0 !important;
        color: black !important;
    }

    .pricing-button-subscription {
        background: black !important;
        color: white !important;
    }

    /* Feature rows with dividers */
    .pricing-feature-check {
        display: flex !important;
        flex-direction: row !important;
        height: auto !important;
        min-height: unset !important;
        padding: 16px 0 !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 16px !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
        border-bottom: none !important;
        border-left: none !important;
        border-right: none !important;
    }

    .pricing-plan .pricing-feature-check:first-of-type {
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    }

    .pricing-plan .pricing-feature-check:last-child {
        border-bottom: none !important;
    }

    /* Show feature text on mobile */
    .pricing-feature-check .pricing-feature-text {
        display: block !important;
        font-size: 16px !important;
        line-height: 22px !important;
        text-align: left !important;
        flex: 1 !important;
        color: black !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
    }

    /* Icon circles */
    .pricing-feature-check .check-icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        max-width: 32px !important;
        min-height: 32px !important;
        max-height: 32px !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        overflow: visible !important;
        position: relative !important;
    }

    /* Yellow circle for included */
    .pricing-feature-check .check-yes {
        background: #FFF066 !important;
    }

    /* Transparent for excluded */
    .pricing-feature-check .check-no {
        background: transparent !important;
    }

    /* Checkmark icon inside yellow circle */
    .pricing-feature-check .check-icon-img {
        width: 16px !important;
        height: 16px !important;
        object-fit: contain !important;
        display: block !important;
    }

    /* X icon -- smaller, dimmed */
    .pricing-feature-check .check-icon-img-close {
        width: 14px !important;
        height: 14px !important;
        object-fit: contain !important;
        display: block !important;
        opacity: 0.4 !important;
    }

    /* ====== END MOBILE PRICING ====== */
}

@media (max-width: 427px) {
    .feature-card { padding: 30px; }
    .feature-card .feature-phone-mockup { width: 100%; min-width: 0; max-width: 100%; }
    .features-carousel-wrapper { padding: 10px 10px; }
}

@media (max-width: 470px) {
    .header .actions-section .btn-text { display: none; }
    .header .actions-section .btn-fill { display: flex; }
}

@media (max-width: 400px) {
    .header .icons-section { display: none; }
    .hero-container { padding-left: 20px; padding-right: 20px; }
    .privacy-card { padding: 16px 20px 40px; }
    .contact-card { padding: 16px 20px 40px; }
}

@media (max-width: 350px) {
    .hero-tabs { flex-wrap: wrap; }
    .hero-container { padding-left: 16px; padding-right: 16px; }
    .privacy-card { padding: 16px 16px 40px; }
    .contact-card { padding: 16px 16px 40px; }
}

@media (max-width: 1400px) {
    .reasons-section { padding: 80px 60px; }
    .reasons-content { gap: 40px; }
    .reasons-cards { max-width: 550px; }
    .reasons-video-container { max-width: 480px; }
    .reason-card { padding: 32px; }
    .reason-percent, .reason-title-text { font-size: 20px; line-height: 24px; }
    .reason-description { font-size: 16px; line-height: 24px; }
}

@media (max-width: 1200px) {
    .reasons-section { padding: 80px 40px; }
    .reasons-content { gap: 32px; }
    .reasons-cards { max-width: 480px; }
    .reasons-video-container { max-width: 400px; }
    .reason-card { padding: 28px; gap: 10px; }
    .reason-percent, .reason-title-text { font-size: 18px; line-height: 22px; }
    .reason-description { font-size: 16px; line-height: 24px; }
}

@media (max-width: 1024px) {
    .reasons-content { flex-direction: column; gap: 32px; align-items: center; }
    .reasons-cards { width: 100%; max-width: 100%; }
    .reasons-video-container { width: 100%; max-width: 100%; height: auto; align-self: center; }
    .reason-card { padding: 36px; }
    .reason-percent, .reason-title-text { font-size: 22px; line-height: 26px; }
    .reason-description { font-size: 16px; line-height: 24px; }
}

.cta-section {
    width: 100%;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-container {
    width: calc(100% - 160px);
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: 80px;
    margin-right: 80px;
    object-fit: contain;
    border-radius: 32px;
}

.cta-logo {
    position: absolute;
    left: 50%;
    top: 97.22px;
    transform: translateX(-50%);
    width: 113.55px;
    height: 113px;
    z-index: 5;
    display: block;
    object-fit: contain;
}

.cta-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.cta-image { position: absolute; object-fit: contain; }
.cta-image-1 { width: 261.33px; height: 261.33px; left: 113.37px; top: 113.01px; transform: rotate(-14deg); transform-origin: top left; }
.cta-image-2 { width: 581.14px; height: 581.14px; left: -88.24px; top: 469.34px; transform: rotate(8deg); transform-origin: top left; }
.cta-image-3 { width: 613.14px; height: 572.78px; left: 903.52px; top: 625.78px; transform: rotate(7deg); transform-origin: top left; }
.cta-image-4 { width: 600.44px; height: 600.44px; left: 1507.08px; top: 169.89px; transform: rotate(8deg); transform-origin: top left; }
.cta-image-5 { width: 306.52px; height: 306.52px; left: 1173.32px; top: 36.16px; }

.cta-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 958.22px;
    max-width: 100%;
}

.cta-subtitle {
    color: var(--Text-primary);
    font-size: 31.78px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 44.49px;
    word-wrap: break-word;
    margin-bottom: 0;
}

.cta-title {
    width: 100%;
    text-align: center;
    color: var(--Text-primary);
    font-size: 85.56px;
    font-family: 'Druk Wide', sans-serif;
    font-weight: 500;
    line-height: 94.11px;
    word-wrap: break-word;
    margin-top: 0;
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; gap: 24px; }
    .cta-section { padding: 36px 0; }
    
    .cta-container {
        width: calc(100% - 40px);
        max-width: 100%;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .cta-title { font-size: 48px; line-height: 56px; }
    .cta-subtitle { font-size: 24px; line-height: 32px; }
    .cta-logo { top: 40px; width: 80px; height: 80px; }
    .cta-content { width: 100%; padding: 0 20px; }
    
    .cta-image-1, .cta-image-2, .cta-image-3, .cta-image-4, .cta-image-5 {
        width: 150px;
        height: 150px;
        opacity: 0.5;
    }
}

.try-section {
    width: 100%;
    padding: 10px 10px 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

@media (min-width: 769px) {
    .try-section {
        padding: 104px 10px 26px;
    }
}

.try-container {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 32px;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding: 0;
}

.try-content {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
}

@media (min-width: 769px) {
    .try-container {
        background: var(--background-white);
        gap: 72px;
    }
    .try-content {
        gap: 126px;
    }
}

@media (min-width: 769px) {
    .try-container {
        padding: 104px 110px;
    }
}

.try-title {
    align-self: stretch;
    text-align: center;
    color: var(--Text-primary);
    font-size: 56px;
    font-family: 'Druk Wide', sans-serif;
    font-weight: 500;
    line-height: 64px;
    word-wrap: break-word;
}

@media (min-width: 769px) {

.pricing-table {
    align-self: stretch;
    display: inline-flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    margin-top: 20px;
}

.pricing-features {
    width: 500px;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.pricing-plan-group {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
}

.pricing-dots { display: none; }

.pricing-features-list {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
}

.pricing-feature-header {
    align-self: stretch;
    height: 209px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 0;
    padding-bottom: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 12px;
    box-sizing: border-box;
}

.pricing-feature-item {
    align-self: stretch;
    height: 64px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 1px var(--background-stroke) solid;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
}

.pricing-feature-text {
    flex: 1 1 0;
    color: var(--Text-primary);
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 26px;
    word-wrap: break-word;
}

.pricing-feature-check .pricing-feature-text { display: none; }

.pricing-feature-header .pricing-feature-text {
    font-weight: 600;
    line-height: 24px;
}

.pricing-plan {
    flex: 1 1 0;
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 32px;
    border-style: none;
    border-width: 0px;
    border-color: rgba(0, 0, 0, 0);
    border-image: none;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.free-plan { background: var(--background-white); }

.subscription-plan {
    background: hsl(72 2% 96%);
    border-radius: 32px;
    margin-top: -96px;
    padding-top: 96px;
}

.weekly-plan, .monthly-plan, .yearly-plan { min-width: 0; }
.weekly-plan { margin-left: 8px; }
.monthly-plan, .yearly-plan { margin-left: 4px; }

.pricing-plan-content {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
}

.pricing-plan-header {
    align-self: stretch;
    height: 209px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 17px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
    box-sizing: border-box;
}

.pricing-plan-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    min-height: 72px;
}

.pricing-plan-badge {
    min-height: 24px;
    padding: 2px 10px;
    border-radius: 8px;
    background: var(--Button-primary);
    color: var(--Text-primary);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 16px;
}

.free-plan .pricing-plan-meta::before,
.weekly-plan .pricing-plan-meta::before {
    content: '';
    display: block;
    min-height: 24px;
    padding: 2px 10px;
    margin-bottom: 16px;
}

.pricing-plan-trial {
    color: var(--Text-secondary);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
}

.pricing-plan-title {
    color: var(--Text-primary, black);
    font-size: 24px;
    font-family: 'Druk Wide', sans-serif;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    word-wrap: break-word;
    margin-bottom: 8px;
}

.pricing-plan-price {
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 3px;
    margin-top: 54px;
    margin-bottom: 8px;
}

.price-amount {
    color: var(--Text-primary);
    font-size: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0;
    text-align: center;
    word-wrap: break-word;
}

.price-period {
    color: var(--Text-secondary);
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 26px;
    word-wrap: break-word;
}

.pricing-button {
    align-self: stretch;
    height: 60px;
    padding: 16px 24px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
    transition: opacity 0.2s;
    margin-top: 32px;
}

.pricing-button:hover { opacity: 0.8; }
.pricing-button-free { background: #F4F5F0; color: var(--Text-primary); }
.pricing-button-subscription { background: var(--Button-secondary); color: var(--Text-white); }

.pricing-feature-check {
    align-self: stretch;
    height: 64px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 1px var(--background-stroke) solid;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
}

.pricing-plan .pricing-feature-check:last-child,
.pricing-features-list .pricing-feature-item:last-child {
    border-bottom: none;
}

.pricing-feature-placeholder .pricing-feature-text,
.pricing-feature-placeholder .check-icon {
    opacity: 0;
}

.check-icon {
    width: 24px;
    height: 24px;
    position: relative;
    overflow: hidden;
}

.check-yes {
    display: flex;
    justify-content: center;
    align-items: center;
}

.check-yes svg { width: 16px; height: 16px; }
.check-icon-img { width: 24px; height: 24px; display: block; object-fit: contain; }

.check-no {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.check-no svg { width: 24px; height: 24px; }
.check-icon-img-close { width: 24px; height: 24px; display: block; object-fit: contain; }

} /* end @media (min-width: 769px) pricing desktop */

.footer {
    width: 100%;
    padding: 32px 0;
    background: hsl(72 2% 96%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-container {
    width: 100%;
    max-width: calc(366px * 4 + 24px * 3);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transform: translateY(-6px);
}

.footer-brand {
    color: var(--Text-primary);
    font-size: 26px;
    font-family: 'Druk Wide', sans-serif;
    font-weight: 700;
    flex-shrink: 0;
    text-decoration: none;
}

.footer-copy {
    color: var(--Text-primary);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.footer-copy-link {
    color: var(--Text-primary);
    text-decoration: underline;
    transition: opacity 0.2s;
}

.footer-copy-link:hover { opacity: 0.7; }

.footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.footer-link {
    color: #888;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-link:hover { opacity: 0.7; }

@media (max-width: 1600px) {
    .footer { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 768px) {
    .footer { padding: 30px 20px; }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .footer-brand { order: 1; }

    .footer-copy {
        order: 2;
        font-size: 14px;
        position: static;
        transform: none;
    }

    .footer-right {
        order: 3;
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
    }

    .footer-link { font-size: 16px; padding-top: 6px; padding-bottom: 6px; }
    .footer-link-contact { font-size: 16px; }
}

.waitlist-section {
    width: 100%;
    padding: 0 10px 24px;
    background: hsl(72 2% 96%);
    display: flex;
    justify-content: center;
}

.waitlist-card {
    width: 100%;
    max-width: 1840px;
    min-height: 630px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px;
    background: #000;
}

.waitlist-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.waitlist-inner {
    width: 100%;
    max-width: 1120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.waitlist-title {
    margin: 0;
    color: #FFFFFF;
    font-family: 'Druk Wide', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 56px;
    line-height: 80px;
    letter-spacing: 0;
    text-align: center;
}

.waitlist-form {
    width: 100%;
    max-width: 1120px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.waitlist-input {
    flex: 0 0 550px;
    width: 550px;
    min-width: 550px;
    height: 62px;
    padding: 0 28px;
    border: none;
    border-radius: 18px;
    background: rgb(244, 244, 246);
    color: var(--Text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    line-height: 28px;
    letter-spacing: 0;
    outline: none;
}

.waitlist-input::placeholder {
    color: hsl(0 0% 54%);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
}

.waitlist-button {
    position: relative;
    height: 62px;
    min-width: 322px;
    margin-left: 0;
    border: none;
    border-radius: 18px;
    padding: 0 34px;
    background: #f0e24a;
    color: var(--Text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: filter 0.2s ease;
    white-space: nowrap;
}

.waitlist-button:hover { filter: brightness(0.97); }

@media (max-width: 1100px) {
    .waitlist-section { padding-left: 10px; padding-right: 10px; }
    .waitlist-card { min-height: 520px; padding: 104px 32px 72px; }
    .waitlist-inner { max-width: 860px; gap: 64px; }
    .waitlist-title { font-size: 56px; line-height: 64px; }
    .waitlist-form { max-width: 860px; }
    .waitlist-input { height: 58px; border-radius: 18px; padding: 0 24px; }
    .waitlist-button { min-width: 248px; height: 58px; margin-left: 0; border-radius: 14px; }
}

@media (max-width: 768px) {
    .waitlist-section { padding: 0 10px 20px; }
    .waitlist-card { min-height: 500px; border-radius: 24px; padding: 40px 20px; align-items: center; }
    .waitlist-video { object-position: center center; }
    .waitlist-inner { gap: 24px; z-index: 2; position: relative; }
    .waitlist-title { font-size: clamp(34px, 9vw, 48px); line-height: 1.08; }
    .waitlist-form { max-width: 100%; flex-direction: column; gap: 12px; }
    .waitlist-input, .waitlist-button { width: 100%; min-width: 0; flex: 0 1 auto; margin-left: 0; height: 54px; border-radius: 14px; }
    .waitlist-input { background: rgb(244, 244, 246); padding: 0 16px; font-size: 18px; line-height: 28px; }
    .waitlist-button { min-width: 0; padding: 0 24px; font-size: 16px; line-height: 24px; }
}

.privacy-page { min-height: 100vh; background: hsl(72 2% 96%); }
.privacy-shell { width: 100%; padding: 10px 10px 0; }
.privacy-card { width: 100%; min-height: calc(100vh - 20px); background: var(--background-white); border-radius: 32px; padding: 32px 110px 48px; }

.privacy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    max-width: calc(366px * 4 + 24px * 3);
    margin: 0 auto;
}

.privacy-brand {
    color: var(--Text-primary);
    font-size: 26px;
    font-family: 'Druk Wide', sans-serif;
    font-weight: 700;
    text-decoration: none;
}

.privacy-app-link {
    min-width: 100px;
    height: 40px;
    padding: 8px 16px;
    border-radius: 16px;
    background: var(--Button-secondary);
    color: var(--Text-white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s;
}

.privacy-app-badge-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.privacy-app-link:hover, .privacy-app-badge-link:hover, .privacy-brand:hover { opacity: 0.8; }
.privacy-hero { max-width: 920px; margin: 96px auto 0; text-align: center; }
.privacy-title { color: var(--Text-primary); font-size: 72px; font-family: 'Druk Wide', sans-serif; font-weight: 500; line-height: 80px; }
.privacy-updated { margin-top: 40px; color: var(--Text-primary); font-size: 16px; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 24px; letter-spacing: 0; text-align: center; }
.privacy-content { max-width: 760px; margin: 48px auto 0; }
.privacy-intro, .privacy-text, .privacy-list { color: var(--Text-primary); font-size: 16px; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 30px; }
.privacy-section { margin-top: 40px; }
.privacy-section-title { margin-bottom: 18px; color: var(--Text-primary); font-size: 24px; font-family: 'Druk Wide', sans-serif; font-weight: 500; line-height: 32px; }
.privacy-list { padding-left: 18px; list-style: disc; }

.privacy-email {
    margin-top: 18px;
    color: var(--Text-primary);
    font-size: 24px;
    font-family: 'Druk Wide', sans-serif;
    font-weight: 500;
    line-height: 28px;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    display: inline-block;
}

.privacy-email:hover { opacity: 0.8; }

@media (max-width: 768px) {
    .privacy-card { min-height: auto; padding: 16px 30px 40px; }
    .privacy-header { align-items: flex-start; padding-left: 0 !important; padding-top: 0 !important; }
    .privacy-brand { position: relative; left: -11px; }
    .privacy-app-badge-link, .privacy-header .app-store-badge { position: relative; right: -5px; top: -4px; }
    .privacy-hero { margin-top: 64px; }
    .privacy-title { font-size: 48px; line-height: 54px; }
    .privacy-updated { margin-top: 24px; font-size: 16px; line-height: 24px; }
    .privacy-content { margin-top: 32px; }
    .privacy-section { margin-top: 32px; }
    .privacy-section-title { font-size: 24px; line-height: 32px; }
    .privacy-intro, .privacy-text, .privacy-list { font-size: 17px; line-height: 30px; }
}

.contact-page { min-height: 100vh; background: hsl(72 2% 96%); }
.contact-shell { width: 100%; padding: 10px 10px 0; }
.contact-card { width: 100%; background: var(--background-white); border-radius: 32px; padding: 32px 110px 64px; }
.contact-hero { max-width: 960px; margin: 124px auto 0; text-align: center; }
.contact-title { color: var(--Text-primary); font-size: 72px; font-family: 'Druk Wide', sans-serif; font-weight: 500; line-height: 80px; }
.contact-copy { max-width: 920px; margin: 56px auto 0; text-align: left; }
.contact-section-title { color: var(--Text-primary); font-size: 24px; font-family: 'Druk Wide', sans-serif; font-weight: 500; line-height: 32px; }
.contact-text { color: var(--Text-primary); font-size: 16px; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 30px; }

.contact-email {
    margin-top: 20px;
    color: var(--Text-primary);
    font-size: 28px;
    font-family: 'Druk Wide', sans-serif;
    font-weight: 500;
    line-height: 36px;
    text-decoration: none;
    display: inline-block;
}

.contact-feedback { max-width: 920px; margin: 44px auto 0; }
.contact-feedback .contact-text { margin-top: 24px; }

.contact-link {
    margin-top: 20px;
    color: var(--Text-primary);
    font-size: 28px;
    font-family: 'Druk Wide', sans-serif;
    font-weight: 500;
    line-height: 36px;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    display: inline-block;
}

.founder-section { max-width: 920px; margin: 64px auto 0; padding: 0 0 80px; }
.founder-title { color: var(--Text-primary); font-size: 24px; font-family: 'Druk Wide', sans-serif; font-weight: 500; line-height: 32px; }
.founder-avatar-wrap { width: 60px; height: 60px; margin-top: 28px; border-radius: 999px; background: var(--background-white); overflow: hidden; }
.founder-avatar { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-copy { margin-top: 28px; display: flex; flex-direction: column; gap: 24px; }
.contact-email:hover, .contact-link:hover { opacity: 0.8; }

@media (max-width: 768px) {
    .contact-card { padding: 16px 30px 40px; }
    .contact-hero { margin-top: 72px; }
    .contact-title { font-size: 48px; line-height: 54px; }
    .contact-copy { margin-top: 32px; }
    .contact-section-title, .founder-title { font-size: 24px; line-height: 32px; }
    .contact-text { font-size: 17px; line-height: 30px; }
    .contact-email, .contact-link { font-size: 24px; line-height: 32px; }
    .founder-section { margin-top: 48px; padding: 0 20px 56px; }
}

/* Waitlist Modal */
.waitlist-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.waitlist-modal.active { opacity: 1; visibility: visible; }
.waitlist-modal-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.6); }

.waitlist-modal-content {
    position: relative;
    width: calc(100% - 20px);
    max-width: 1900px;
    height: calc(100vh - 20px);
    max-height: 1020px;
    background: var(--background-white);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.waitlist-modal-video {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center top;
    border-radius: 32px;
}

.waitlist-modal-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px 110px;
}

.waitlist-modal-header { display: flex; justify-content: space-between; align-items: center; }
.waitlist-modal-logo { color: var(--Text-primary); font-size: 26px; font-family: 'Druk Wide', sans-serif; font-weight: 700; text-decoration: none; }
.waitlist-modal-logo:hover { opacity: 0.8; }
.waitlist-modal-badge { height: 48px; width: auto; }

.waitlist-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

.waitlist-modal-title {
    max-width: 896px;
    color: var(--Text-primary);
    font-size: 72px;
    font-family: 'Druk Wide', sans-serif;
    font-weight: 500;
    line-height: 76px;
}

.waitlist-modal-text {
    max-width: 752px;
    margin-top: 24px;
    color: var(--Text-primary);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 26px;
}

.waitlist-modal-text strong { font-weight: 700; }

.waitlist-modal-form-container {
    position: absolute;
    top: 72%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.waitlist-modal-form { display: flex; gap: 12px; }

.waitlist-modal-input {
    width: 550px;
    height: 60px;
    padding: 0 24px;
    background: var(--background-white);
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 28px;
    color: var(--Text-primary);
}

.waitlist-modal-input::placeholder { color: var(--Text-secondary); }
.waitlist-modal-input:focus { outline: none; }

.waitlist-modal-button {
    width: 300px;
    height: 60px;
    padding: 16px 24px;
    background: var(--Button-primary);
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 24px;
    color: var(--Text-primary);
    cursor: pointer;
    transition: opacity 0.2s;
}

.waitlist-modal-button:hover { opacity: 0.8; }
.waitlist-modal-header-right { display: flex; align-items: center; gap: 16px; }

.waitlist-modal-close {
    position: absolute;
    top: 32px;
    right: 110px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Text-primary);
    transition: opacity 0.2s;
}

.waitlist-modal-close:hover { opacity: 0.6; }

@media (max-width: 768px) {
    .waitlist-modal-inner { padding: 24px 30px; }
    .waitlist-modal-title { font-size: 36px; line-height: 42px; }
    .waitlist-modal-text { font-size: 15px; line-height: 24px; }
    .waitlist-modal-body { padding-bottom: 280px; }
    .waitlist-modal-form-container { padding: 0 30px 120px; }
    .waitlist-modal-form { flex-direction: column; width: 100%; }
    .waitlist-modal-input, .waitlist-modal-button { width: 100%; }
    .waitlist-modal-close { top: 24px; right: 24px; }
}

/* ===== 320px ===== */
@media (max-width: 320px) {
    .hero-container {
        padding-left: 14px;
        padding-right: 14px;
        gap: 30px;
    }

    .logo { font-size: 22px; }

    .hero-title {
        font-size: 30px;
        line-height: 30px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 20px;
        padding: 0 10px;
    }

    .btn-primary {
        font-size: 15px;
        padding: 14px 20px;
        line-height: 20px;
    }

    .hero-tabs { gap: 4px; }

    .hero-tab {
        min-width: 80px;
        padding: 9px 12px;
        font-size: 13px;
    }

    .phone-frame {
        flex: 0 0 240px !important;
        width: 240px !important;
        min-width: 240px !important;
        max-width: 240px !important;
        height: 548px !important;
    }

    .phones-container {
        padding-left: calc(50vw - 120px) !important;
        padding-right: calc(50vw - 120px) !important;
        gap: 30px !important;
    }

    .hero-decor { zoom: 0.7; }

    .hero-decor-1,
    .hero-decor-2,
    .hero-decor-3,
    .hero-decor-4 {
        width: 60px;
        height: 62px;
    }

    /* Reasons */
    .reasons-section { padding: 40px 14px; }
    .reason-card { padding: 20px; }
    .reason-percent, .reason-title-text { font-size: 16px; line-height: 20px; }
    .reason-description { font-size: 13px; line-height: 20px; }

    /* Features */
    .features-section { padding: 40px 0; }
    .features-title { font-size: 24px; line-height: 28px; padding: 0 14px; }
    .features-carousel-wrapper { padding: 10px 6px; }
    .feature-card { padding: 20px; }
    .feature-text { font-size: 14px; line-height: 20px; }

    /* Pricing */
    .try-title { font-size: 24px; line-height: 28px; }
    .pricing-plan-title { font-size: 14px; }
    .pricing-plan-price { font-size: 22px; }

    /* Footer */
    .footer { padding: 40px 14px; }
    .footer-links { gap: 8px; }
    .footer-link { font-size: 13px; }
}/* Feature text width override */
.feature-text {
    width: 100% !important;
}
.feature-description {
    width: 100% !important;
    max-width: none !important;
}

/* Hide ALL native video UI (iOS Safari gray circle etc.) */
video::-webkit-media-controls,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-overlay-play-button,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-fullscreen-button,
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-timeline,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display,
video::-webkit-media-controls-volume-slider-container {
    display: none !important;
    -webkit-appearance: none;
    appearance: none;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Hero decor images - reduce size by 10% without affecting transform animations */
.hero-decor {
    zoom: 0.9;
}

/* Feature checkmarks - same size as pricing checkmarks */
.feature-icon-img {
    width: 24px !important;
    height: 24px !important;
}
.feature-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}
.feature-text {
    margin-top: 0 !important;
}
.feature-description {
    /* card width */
}
.feature-card {
    margin-bottom: -40px !important;
}
.feature-video-wrap {
    position: relative;
    width: 100%;
    border-radius: 36px;
    overflow: hidden;
}

/* Pricing buttons - desktop only height override */
@media (min-width: 769px) {
    .pricing-button {
        height: 46px !important;
        min-height: 46px !important;
        max-height: 46px !important;
        font-size: 16px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        line-height: 46px !important;
    }
}

/* Extended background for subscription plans - desktop only */
@media (min-width: 769px) {
    .pricing-plan.subscription-plan .pricing-plan-content {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
        margin-top: -50px !important;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-to-top:hover {
    opacity: 0.8;
}
.scroll-to-top svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 10px;
    left: 10px;
    max-width: 462px;
    padding: 31px 42px 35px 42px;
    background: #F4F5F0;
    border-radius: 32px;
    display: inline-flex;
    flex-wrap: wrap;
    align-content: flex-end;
    align-items: flex-end;
    gap: 11px;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.cookie-banner.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.cookie-text {
    width: 100%;
    color: var(--Text-primary, black);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 16px;
}
.cookie-btn {
    width: 117px;
    height: 36px;
    padding: 11px 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s;
}
.cookie-btn:hover {
    opacity: 0.8;
}
.cookie-btn-accept {
    background: black;
    color: #F4F5F0;
}
.cookie-btn-reject {
    background: #ECECE5;
    color: black;
}

@media (max-width: 640px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        max-width: none;
        padding: 20px;
        gap: 10px;
    }
    .cookie-text {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 4px;
    }
    .cookie-btn {
        flex: 1;
        width: auto;
    }
    .cookie-btn-reject { order: 1; }
    .cookie-btn-accept { order: 2; }
}

/* ─── Lang dropdown ─── */
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-family: 'Druk Wide', sans-serif;
  font-weight: 500;
  color: #000;
  padding: 8px 12px;
  margin-right: 14px;
  border-radius: 6px;
}
.lang-btn:hover {
  background: #f4f5f0;
}
.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border-radius: 10px;
  padding: 16px 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.lang-item {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-family: 'Druk Wide', sans-serif;
  font-weight: 500;
  color: #888;
  padding: 6px 10px;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
}
.lang-item:hover {
  background: #f4f5f0;
}
.lang-item.active {
  color: #000;
  background: #f4f5f0;
}

/* ─── Auth avatar & modal ─── */
.auth-avatar-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e8e9e3;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.auth-avatar-btn:hover {
  background: #d5d6d0;
}
.auth-modal {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  z-index: 1001;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.auth-modal-title {
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #000;
  text-align: center;
}
.auth-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.auth-modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #000;
  transition: background 0.2s;
}
.auth-modal-btn:hover {
  background: #f4f5f0;
}
.auth-modal-btn img {
  width: 20px;
  height: 20px;
}
.auth-modal-btn.apple-btn {
  background: #000;
  color: #fff;
  border: none;
}
.auth-modal-btn.apple-btn:hover {
  background: #222;
}
.auth-modal-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #888;
  line-height: 1.4;
}
.auth-modal-check input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}
.auth-modal-check a {
  color: #000;
  text-decoration: underline;
}
.auth-logged-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.auth-logged-email {
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #000;
}
.auth-signout-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: #888;
  text-decoration: underline;
}
.auth-signout-btn:hover {
  color: #000;
}
