.tool-hero {
    padding: 104px 0 76px;
}

.tool-hero-layout {
    display: grid;
    grid-template-columns: 1fr 390px;
    align-items: center;
    gap: 44px;
}

.tool-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}

.tool-title-row h1 {
    direction: ltr;
    color: #fff;
    font-size: clamp(3rem, 8vw, 6.3rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    text-shadow: 0 0 36px rgba(66, 220, 255, 0.28);
}

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 999px;
    color: var(--green);
    background: rgba(61, 255, 151, 0.08);
    border: 1px solid rgba(61, 255, 151, 0.25);
    font-weight: 900;
}

.tool-info>p {
    max-width: 790px;
    color: #d8e5f4;
    font-size: 1.16rem;
    line-height: 1.9;
    margin-bottom: 26px;
}

.tool-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.tool-platforms div {
    direction: ltr;
    min-width: 175px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 15px;
    border-radius: 17px;
    border: 1px solid rgba(66, 220, 255, 0.18);
    background: rgba(15, 141, 255, 0.075);
}

.tool-platforms strong {
    color: #fff;
}

.tool-platforms span {
    color: var(--blue-2);
    font-size: 0.8rem;
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(66, 220, 255, 0.08);
}

.tool-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tool-preview {
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    border: 1px solid rgba(66, 220, 255, 0.24);
    background:
        radial-gradient(circle at 50% 26%, rgba(66, 220, 255, .2), transparent 35%),
        linear-gradient(180deg, rgba(7, 25, 50, .92), rgba(2, 10, 22, .98));
    box-shadow: var(--glow), 0 30px 90px rgba(0, 0, 0, .35);
    overflow: hidden;
}

.tool-preview-motion {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 35%, rgba(66, 220, 255, .1), transparent 65%),
        repeating-linear-gradient(0deg, transparent 0 14px, rgba(255, 255, 255, .025) 15px);
    animation: previewScan 6s linear infinite;
}

.preview-icon {
    position: relative;
    z-index: 1;
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 50%;
    border: 1px solid rgba(66, 220, 255, 0.4);
    background: rgba(5, 18, 36, 0.92);
    box-shadow: 0 0 55px rgba(66, 220, 255, .25);
}

.preview-icon img {
    width: 84px;
    height: 84px;
    object-fit: contain;
}

.preview-live {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 900;
    margin-bottom: 16px;
}

.preview-live b {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 16px rgba(61, 255, 151, .95);
    animation: toolLive 1.4s infinite;
}

.tool-preview h3,
.tool-preview p {
    position: relative;
    z-index: 1;
}

.tool-preview h3 {
    direction: ltr;
    color: var(--blue-2);
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.tool-preview p {
    direction: ltr;
    color: var(--muted);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.requirement-card {
    min-height: 260px;
    padding: 26px;
    border-radius: 28px;
    border: 1px solid rgba(84, 171, 255, 0.18);
    background: linear-gradient(180deg, rgba(7, 22, 43, .92), rgba(3, 13, 28, .98));
    box-shadow: 0 26px 75px rgba(0, 0, 0, .3);
    transition: 0.25s ease;
}

.requirement-card:hover {
    transform: translateY(-7px);
    border-color: rgba(66, 220, 255, 0.42);
}

.requirement-card b {
    direction: ltr;
    display: inline-flex;
    color: var(--blue-2);
    font-size: 2.15rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.requirement-card h3 {
    font-size: 1.24rem;
    margin-bottom: 12px;
}

.requirement-card p {
    color: #d5e2f1;
    line-height: 1.85;
}

.requirement-card strong {
    direction: ltr;
    color: var(--green);
}

.activation-note {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(66, 220, 255, 0.28);
    background:
        radial-gradient(circle at 0% 50%, rgba(66, 220, 255, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(15, 141, 255, 0.12), rgba(4, 17, 34, 0.86));
    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.22),
        0 0 34px rgba(15, 141, 255, 0.10);
}

.activation-note i {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--blue-2);
    background: rgba(66, 220, 255, 0.10);
    border: 1px solid rgba(66, 220, 255, 0.30);
    box-shadow: 0 0 26px rgba(66, 220, 255, 0.18);
    font-size: 1.6rem;
}

.activation-note p {
    margin: 0;
    color: #dff6ff;
    line-height: 1.85;
    font-weight: 800;
}

.faq-section {
    position: relative;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 52%;
    right: 50%;
    width: 720px;
    height: 720px;
    transform: translate(50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66, 220, 255, 0.11), transparent 65%);
    filter: blur(24px);
    pointer-events: none;
    z-index: -1;
}

.faq-shell {
    width: min(100%, 980px);
    margin-inline: auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: 24px;
    border: 1px solid rgba(84, 171, 255, 0.17);
    background:
        linear-gradient(180deg, rgba(7, 22, 43, 0.88), rgba(3, 13, 28, 0.96));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: 0.25s ease;
}

.faq-item.active {
    border-color: rgba(66, 220, 255, 0.42);
    box-shadow:
        0 28px 85px rgba(0, 0, 0, 0.34),
        0 0 38px rgba(15, 141, 255, 0.12);
}

.faq-question {
    width: 100%;
    min-height: 74px;
    padding: 16px 18px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: grid;
    grid-template-columns: 48px 1fr 42px;
    align-items: center;
    gap: 14px;
    text-align: right;
    font-family: inherit;
}

.faq-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--blue-2);
    background: rgba(66, 220, 255, 0.075);
    border: 1px solid rgba(66, 220, 255, 0.17);
    font-size: 1.35rem;
}

.faq-title {
    color: #f4fbff;
    font-size: 1.04rem;
    font-weight: 900;
    line-height: 1.6;
}

.faq-arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #dff6ff;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(135, 200, 255, 0.12);
    font-size: 1.35rem;
    transition: 0.25s ease;
}

.faq-item.active .faq-arrow {
    color: var(--blue-2);
    background: rgba(66, 220, 255, 0.08);
    border-color: rgba(66, 220, 255, 0.28);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 1200px;
}

.faq-answer-inner {
    padding: 0 18px 42px;
}

.faq-answer-inner .faq-custom-player {
    margin-top: 18px;
    margin-bottom: 0;
}

.faq-answer-inner p {
    color: #d5e2f1;
    line-height: 1.9;
    font-weight: 800;
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(135, 200, 255, 0.11);
}

.faq-video-box {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(66, 220, 255, 0.22);
    background:
        radial-gradient(circle at 50% 0%, rgba(66, 220, 255, 0.12), transparent 42%),
        rgba(2, 10, 22, 0.96);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.faq-video-box::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 36%, rgba(66, 220, 255, 0.08), transparent 64%);
    opacity: 0.7;
    z-index: 1;
}

.faq-video {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020a16;
    object-fit: cover;
}

.download-section {
    padding-top: 42px;
}

.download-panel {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(66, 220, 255, 0.22);
    background:
        radial-gradient(circle at 16% 35%, rgba(66, 220, 255, .14), transparent 28%),
        linear-gradient(135deg, rgba(7, 25, 50, .94), rgba(2, 10, 22, .98));
    box-shadow: var(--glow), 0 30px 90px rgba(0, 0, 0, .34);
}

.download-icon {
    height: 150px;
    display: grid;
    place-items: center;
    border-radius: 25px;
    border: 1px solid rgba(66, 220, 255, .22);
    background: radial-gradient(circle, rgba(66, 220, 255, .2), rgba(15, 141, 255, .06));
}

.download-icon i {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #1191ff, #075ee2);
    box-shadow: 0 0 36px rgba(15, 141, 255, .45);
    font-size: 2.4rem;
}

.download-icon span {
    direction: ltr;
    color: var(--blue-2);
    font-weight: 900;
}

.download-copy h2 {
    font-size: clamp(1.65rem, 4vw, 2.5rem);
    margin-bottom: 8px;
}

.download-copy p {
    color: #d5e2f1;
    line-height: 1.85;
}

.android-download-btn {
    min-width: 185px;
}

@keyframes previewScan {
    from {
        transform: translateY(-34px);
    }

    to {
        transform: translateY(34px);
    }
}

@keyframes toolLive {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.45);
        opacity: .55;
    }
}

@media (max-width: 1050px) {
    .tool-hero-layout {
        grid-template-columns: 1fr;
    }

    .tool-info {
        text-align: center;
    }

    .tool-info>p,
    .eyebrow {
        margin-inline: auto;
    }

    .tool-title-row,
    .tool-platforms,
    .tool-buttons {
        justify-content: center;
    }

    .tool-preview {
        width: min(100%, 520px);
        margin-inline: auto;
    }

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

    .download-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-icon {
        width: 170px;
        margin-inline: auto;
    }

    .android-download-btn {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .tool-hero {
        padding: 72px 0 58px;
    }

    .tool-title-row h1 {
        font-size: 3.1rem;
    }

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

    .tool-platforms div {
        min-width: 0;
        padding: 11px 8px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 6px;
    }

    .tool-platforms strong {
        font-size: 0.86rem;
    }

    .tool-platforms span {
        font-size: 0.66rem;
        padding: 3px 6px;
    }

    .faq-question {
        grid-template-columns: 44px 1fr 38px;
        gap: 10px;
        padding: 14px;
    }

    .faq-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 1.2rem;
    }

    .faq-title {
        font-size: 0.94rem;
    }

    .faq-arrow {
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }

    .faq-answer-inner {
        padding: 0 14px 16px;
    }

    .faq-answer-inner p {
        font-size: 0.92rem;
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .tool-title-row {
        justify-content: center;
        text-align: center;
    }

    .tool-title-row h1 {
        font-size: 2.65rem;
    }

    .free-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .tool-info>p {
        font-size: 0.98rem;
    }

    .tool-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .tool-buttons a {
        width: 100%;
    }

    .tool-platforms {
        gap: 6px;
    }

    .tool-platforms div {
        border-radius: 13px;
        padding: 10px 5px;
    }

    .tool-platforms strong {
        font-size: 0.74rem;
    }

    .tool-platforms span {
        font-size: 0.58rem;
    }

    .tool-preview {
        min-height: 330px;
        border-radius: 26px;
    }

    .preview-icon {
        width: 108px;
        height: 108px;
    }

    .preview-icon img {
        width: 72px;
        height: 72px;
    }

    .faq-shell {
        gap: 12px;
    }

    .faq-item {
        border-radius: 20px;
    }

    .faq-question {
        min-height: 68px;
    }

    .faq-video-box {
        border-radius: 18px;
    }
}

.faq-answer-inner {
    padding: 0 18px 42px;
}

.faq-answer-inner .faq-custom-player {
    margin-top: 18px;
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 1200px;
}

@media (max-width: 760px) {
    .faq-answer-inner {
        padding: 0 14px 20px;
    }

    .faq-item.active .faq-answer {
        max-height: 1100px;
    }
}

@media (max-width: 480px) {
    .faq-answer-inner {
        padding: 0 12px 36px;
    }

    .faq-item.active .faq-answer {
        max-height: 1000px;
    }
}

.faq-section,
.faq-shell,
.faq-item,
.faq-answer {
    overflow-anchor: none;
}

.faq-item {
    scroll-margin-top: 96px;
}