.hero-v3 {
    background: linear-gradient(to bottom, #e6faf8 0%, #fff 100%);
    padding: 100px 0 40px;
    overflow: hidden;
}
.hero-v3-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.hero-v3-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    min-width: 0;
}
.hero-v3-title {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
    color: #1a2332;
    margin: 0;
    letter-spacing: -0.02em;
}
.hero-brand-prefix { display: none; }
.hero-v3-subtitle {
    font-size: 18px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}
.hero-v3-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hero-v3-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #444;
    font-weight: 400;
}
.hero-v3-features svg { flex-shrink: 0; }
.hero-v3-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #08CFBB 0%, #06b5a3 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(8, 207, 187, 0.3);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    margin-top: 4px;
}
.hero-v3-cta .cta-arrow { font-size: 20px; transition: transform 0.18s ease; }
.hero-v3-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(8, 207, 187, 0.4); }
.hero-v3-cta:hover .cta-arrow { transform: translateX(3px); }
.hero-v3-cta:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(8, 207, 187, 0.25); }
.hero-v3-proof { font-size: 14px; color: #888; margin: 0; display: none; }
.hero-v3-right { display: flex; justify-content: center; align-items: center; min-width: 0; }
.hero-v3-image { width: auto; max-width: 100%; max-height: 560px; height: auto; display: block; }

.social-proof {
    margin-top: 24px;
    padding: 16px 18px 14px;
    background: rgba(255,255,255,0.88);
    border-radius: 14px;
    max-width: 480px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}
.appstore-badge { display: inline-flex; align-items: center; gap: 10px; padding: 0; font-size: 14px; }
.appstore-badge-source { display: flex; align-items: center; gap: 6px; }
.appstore-badge-icon { width: 20px; height: 20px; opacity: 0.55; }
.appstore-badge-label { font-weight: 700; font-size: 14px; color: #555; white-space: nowrap; letter-spacing: 0.02em; }
.appstore-badge-divider { width: 1px; height: 24px; background: rgba(0,0,0,0.1); flex-shrink: 0; }
.appstore-badge-info { display: flex; flex-direction: column; gap: 0; }
.appstore-badge-score { display: flex; align-items: center; gap: 6px; }
.appstore-stars { color: #ff9500; font-size: 15px; letter-spacing: 0px; }
.appstore-rating { font-weight: 800; font-size: 20px; color: #222; line-height: 1; }
.appstore-count { color: #aaa; font-size: 12px; line-height: 1.3; }
.review-ticker-wrap {
    margin-top: 14px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.review-ticker {
    display: flex;
    gap: 16px;
    animation: ticker-scroll 120s linear infinite;
    width: max-content;
    min-width: 0;
}
.review-ticker:hover { animation-play-state: paused; }
.review-card {
    flex-shrink: 0;
    width: 210px;
    min-height: 110px;
    padding: 14px 16px;
    background: #f5f5f5;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.45;
    display: flex;
    flex-direction: column;
}
.review-card-stars { color: #ff9500; font-size: 11px; letter-spacing: 1px; margin-bottom: 5px; }
.review-card-title { font-weight: 600; color: #222; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-card-content { color: #555; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.review-card-author { color: #bbb; font-size: 11px; margin-top: 6px; }
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partners-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}
.partner-logo { height: 21px; object-fit: contain; max-width: 120px; }
.partner-logo.logo-netflix,
.partner-logo.logo-youtube,
.partner-logo.logo-google { height: 19px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    width: 100%;
    box-sizing: border-box;
}
.feature-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 54px 43px;
    border-radius: 22px;
    gap: 46px;
    height: 305px;
    box-sizing: border-box;
    border: 1px solid black;
    border-bottom: 5px solid black;
    width: 650px;
}
.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 17px;
    max-width: 380px;
}
.feature-title {
    font-size: 36px;
    font-weight: 400;
    margin: 0;
    display: inline-block;
    width: fit-content;
    padding: 2px 4px;
    color: #000;
    font-family: "SF Pro Display", sans-serif;
    font-style: normal;
    line-height: 42px;
    letter-spacing: 0px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}
.feature-description {
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
}
.feature-icon { width: 202px; height: 202px; object-fit: contain; }
.feature-card.card-dark { background-color: black; color: white; border: none; }
.feature-card.card-dark .feature-description { color: white; }

.comparison-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 86px;
    padding: 32px 0;
    background-color: #F4F4F4;
    border-radius: 22px;
    margin-bottom: 80px;
    width: 100%;
    box-sizing: border-box;
}
.comparison-section .comparison-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 33px;
    width: 398px;
    padding: 35px;
    border-radius: 22px;
    border: 1px solid black;
    border-bottom: 5px solid black;
    box-sizing: border-box;
}
.comparison-section .comparison-column::after { content: none; }
.comparison-section .comparison-title {
    font-size: 30px;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.comparison-section .comparison-title .title-icon { width: 31.17px; height: 28.95px; }
.comparison-section .comparison-illustration {
    max-width: 153px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.comparison-section .comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 33px;
}
.comparison-section .comparison-list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    width: 100%;
}
.comparison-section .comparison-list li span:first-child {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    font-weight: 500;
    color: black;
}
.comparison-section .comparison-icon { width: 24px; height: 24px; }
.comparison-section .comparison-list .data {
    font-size: 22px;
    font-weight: 700;
    color: black;
    background-color: transparent;
    padding: 0;
    display: inline;
    border-radius: 0;
    line-height: 1.3;
    word-wrap: break-word;
    text-align: left;
}
.comparison-section .comparison-column:first-child .comparison-list .data {
    background-color: #53F7E6;
    padding: 2px 4px;
    display: inline;
    border-radius: 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}
.comparison-section .comparison-list .no-highlight { background-color: transparent; }

.testimonial-section {
    width: 100%;
    max-width: 1082px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}
.rating-stars { height: 26px; width: auto; display: block; }
.star {
    width: 27.13px;
    height: 25.92px;
    background: black;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.review-content { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.review-text {
    font-size: 36px;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 500;
    color: black;
    text-align: center;
    max-width: 1078px;
    margin: 0;
}
.review-meta { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.review-date { font-size: 20px; font-family: 'SF Pro Display', sans-serif; font-weight: 500; color: black; }
.review-author {
    font-size: 20px;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 500;
    color: black;
    background: #53F7E6;
    padding: 5px 15px;
    border-radius: 4px;
}
.testimonial-section .btn-primary {
    display: inline-flex;
    padding: 14px 33px;
    align-items: center;
    gap: 10px;
    border-radius: 7px;
    background: #000;
    width: auto;
    margin: 0 auto;
}
.testimonial-content.is-sliding-out {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.testimonial-content.is-sliding-in {
    opacity: 0;
    transform: translateX(30px);
    transition: none;
}

.download-section {
    width: 100%;
    padding: 64px 19px;
    scroll-margin-top: 80px;
    background: #F6F6F6;
    border-radius: 30px;
    margin-bottom: 80px;
    box-sizing: border-box;
}
.download-container {
    max-width: 1330px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.download-header { text-align: center; display: flex; flex-direction: column; gap: 7px; }
.download-title { color: black; font-size: 32px; font-family: 'SF Pro Display', sans-serif; font-weight: 500; margin: 0; }
.download-subtitle { color: black; font-size: 22px; font-family: 'SF Pro Display', sans-serif; font-weight: 300; margin: 0; }
.download-platforms { display: flex; justify-content: center; align-items: flex-start; gap: 74px; flex-wrap: wrap; }
.platform-item { position: relative; display: flex; flex-direction: column; align-items: center; }
.platform-link { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: black; transition: transform 0.3s ease; }
.platform-link:hover { transform: translateY(-5px); }
.platform-icon-wrapper { display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; }
.platform-link:hover .platform-icon-wrapper { transform: scale(1.05); }
.download-platform-icon { width: 88px; height: 88px; object-fit: contain; display: block; }
.platform-name { color: black; font-size: 32px; font-family: 'SF Pro Display', sans-serif; font-weight: 500; margin-top: 5px; text-align: center; }
.platform-name small { display: block; font-size: 15px; font-weight: 300; margin-top: 2px; }
.qr-popup {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}
.qr-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}
.platform-item:hover .qr-popup { opacity: 1; visibility: visible; }
.qr-code { width: 160px; height: 160px; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; }
.qr-code canvas, .qr-code img { display: block; width: 100% !important; height: 100% !important; }
.qr-text { font-size: 14px; color: #666; text-align: center; margin: 0; }

@media (max-width: 992px) {
    .hero-v3 { padding: 90px 0 16px; }
    .hero-v3-inner { grid-template-columns: 1fr; gap: 24px; text-align: left; }
    .hero-v3-left,
    .social-proof,
    .review-ticker-wrap { min-width: 0; }
    .hero-v3-title { font-size: 30px; }
    .hero-v3-right {
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .hero-v3-image {
        display: block;
        width: 200px;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        flex: 0 0 auto;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    }
    .social-proof { max-width: 100%; padding: 10px 14px 8px; }
    .review-card { width: 180px; min-height: 90px; padding: 10px 12px; }
    .hero-v3-cta { padding: 14px 32px; font-size: 16px; }
    .hero-v3-features li { font-size: 15px; }
    .appstore-badge { font-size: 13px; gap: 8px; }
    .appstore-badge-icon { width: 18px; height: 18px; }
    .appstore-badge-label { font-size: 13px; }
    .appstore-badge-divider { height: 20px; }
    .appstore-rating { font-size: 17px; }
    .hero-brand-prefix { display: none; }
    .partners-section { margin-bottom: 40px; }
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .feature-card { flex-direction: column; align-items: flex-start; text-align: left; height: auto; padding: 30px; gap: 20px; width: auto; max-width: 450px; margin: 0 auto; justify-content: flex-start; }
    .feature-content { max-width: 100%; align-items: flex-start; text-align: left; }
    .feature-title { font-size: 20px; line-height: 1.3; padding: 1px 3px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
    .feature-title br { display: none; }
    .feature-icon { width: 150px; height: 150px; align-self: center; margin-top: 20px; }
    .feature-description { font-size: 16px; line-height: 1.5; }
    .comparison-section { flex-direction: column; align-items: center; gap: 30px; padding: 20px 0; background-color: transparent; margin-bottom: 40px; }
    .comparison-section .comparison-column { width: 100%; max-width: 450px; padding: 25px; }
    .comparison-section .comparison-list .data { font-size: 18px; }
    .download-section { padding: 40px 15px; margin-bottom: 60px; }
    .download-title { font-size: 28px; }
    .download-subtitle { font-size: 18px; }
    .download-platforms { gap: 40px; }
    .download-platform-icon { width: 70px; height: 70px; }
    .platform-name { font-size: 24px; }
    .platform-name small { font-size: 13px; }
}

@media (max-width: 768px) {
    .partners-section { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; justify-items: center; margin-bottom: 30px; }
    .download-section { padding: 30px 10px; border-radius: 20px; }
    .download-container { gap: 20px; }
    .download-platforms { gap: 30px; }
    .qr-popup { width: 160px; padding: 15px; bottom: 110%; }
}

@media (max-width: 576px) {
    .partners-section { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .partner-logo { height: 18px; }
    .partner-logo.logo-netflix,
    .partner-logo.logo-youtube,
    .partner-logo.logo-google { height: 16px; }
    .feature-description { font-size: 16px; line-height: 1.5; }
    .comparison-section .comparison-list .data { font-size: 18px; }
    .testimonial-section .review-text { font-size: 20px; }
    .testimonial-section .review-author,
    .testimonial-section .review-date { font-size: 16px; }
    .download-section { padding: 25px 10px; }
    .download-title { font-size: 24px; }
    .download-subtitle { font-size: 16px; }
    .download-platforms { gap: 20px; }
    .download-platform-icon { width: 60px; height: 60px; }
    .platform-name { font-size: 18px; }
    .platform-name small { font-size: 11px; }
    .qr-popup { width: 140px; padding: 12px; }
    .qr-text { font-size: 12px; }
}
