@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/*VARIABLES*/
:root {
    --main-bg-color: #f0f7f8;
    --secondary-bg-color: #f7f9fc;
    --menu-color: #03a0c7;
    --main-head-color: #333;
    --main-font-color: #424242;
    --secondary-font-color: #616161;
    --footer-color: #202835;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}


/*FONTS*/
.ubuntu-light {
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.ubuntu-regular {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.ubuntu-light-italic {
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.ubuntu-regular-italic {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: italic;
}

body {
    background-color: var(--secondary-color);
    font-family: "Ubuntu", sans-serif;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--menu-color);
    border-bottom: 1px solid #eee;
}

.header-container {
    max-width: 1100px;
    margin: auto;
    padding: 1.125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 20px;
    color: #fff;
}

.main-nav {
    align-items: center;
    gap: 1.25rem;
}

    .main-nav a {
        text-decoration: none;
        color: #fff;
        font-family: "Ubuntu", sans-serif;
        font-weight: 300;
    }

.btn-outline {
    border: 1px solid #fff;
    padding: 6px 12px;
    border-radius: 5px;
}

@media (min-width: 768px) {

    .main-nav {
        display: flex;
    }

    .hamburger {
        display: none;
    }
}

.hamburger {
    position: relative;
    width: 24px;
    height: 18px;
    background:none;
}

    .hamburger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #fff;
        transition: 0.3s ease;
    }

        .hamburger span:nth-child(1) {
            top: 0;
        }

        .hamburger span:nth-child(2) {
            top: 11px;
        }

        .hamburger span:nth-child(3) {
            bottom: 0;
        }

    .hamburger.active span:nth-child(1) {
        top: 13px;
        transform: rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        bottom: 8px;
        transform: rotate(-45deg);
    }

@media (max-width: 767px) {

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--menu-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
    }

        .main-nav.active {
            display: flex;
        }

    .hamburger {
        display: flex;
    }
}

body.menu-open {
    overflow: hidden;
}


/* HERO */
.hero {
    /*height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;*/
    background: var(--main-bg-color);
    text-align: center;
    padding-top: 4rem;
}

.hero-inner {
    max-width: 700px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--main-head-color);
    line-height: 40px;
}

.hero p {
    margin-bottom: 1rem;
    color: var(--main-font-color);
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size:15px;
}

.screenshot-form {
    /*display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;*/
    background: white;
    /*padding: 6px;*/
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .screenshot-form input {
        flex: 1;
        min-width: 0;
        padding: 14px 16px;
        border: 1px solid #ddd;
        border-right: none;
        border-radius: 6px 0 0 6px;
    }

        .screenshot-form input:focus {
            outline: none;
            border-color: var(--menu-color);
            box-shadow: 0 0 0 2px rgba(99,102,241,0.15);
        }

    .screenshot-form button {
        padding: 14px 22px;
        background: #111827;
        color: white;
        border-radius: 0 6px 6px 0;
        cursor: pointer;
        white-space: nowrap;
    }

#screenshot-input::placeholder {
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: var(--secondary-font-color);
}

.hero-note {
    font-size: 13px;
    color: var(--main-font-color);
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.ai-definition {
    margin:0 !important;
    padding:0
}

@media (max-width: 768px) {
    .hero-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 640px) {

    .screenshot-form {
        /*flex-direction: column;
        gap: 10px;*/
    }

        .screenshot-form input {
            border-radius: 6px;
            border-right: 1px solid #ddd;
        }

        .screenshot-form button {
            width: 100%;
            border-radius: 6px;
        }
}


/* FEATURES */
.features {
    padding: 100px 20px;
    text-align: center;
    background: var(--secondary-bg-color)
}

    .features h2 {
        text-align: center;
        font-size: 32px;
        margin-bottom: 4rem;
        color: var(--main-head-color);
        font-family: "Ubuntu", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .features p.section-desc {
        text-align: center;
        max-width: 1100px;
        margin: 0 auto 60px;
        color: #666;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}


.feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    }


    .feature-card i {
        font-size: 22px;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        background: var(--menu-color);
        color: white;
        transition: 0.3s ease;
    }

    .feature-card:hover i {
        transform: scale(1.08);
    }


    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 1.3;
        color: var(--main-head-color);
        font-family: "Ubuntu", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .feature-card p {
        color: var(--secondary-font-color);
        font-size: 15px;
        line-height: 1.6;
    }


/* ADVANCED FEATURES */
.advanced {
    padding: 100px 20px;
    background: var(--main-bg-color);
}

.advanced__container {
    max-width: 1100px;
    margin: 0 auto;
}

.advanced__header {
    text-align: center;
    margin-bottom: 80px;
}

    .advanced__header h2 {
        font-size: 32px;
        margin-bottom: 15px;
        color: var(--main-head-color);
        font-family: "Ubuntu", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

.advanced__desc {
    color: var(--main-font-color);
    line-height: 1.6;
}

.advanced-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px 50px;
}

.advanced-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

    .advanced-item i {
        font-size: 20px;
        min-width: 42px;
        height: 42px;
        border-radius: 10px;
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        color: #111827;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .advanced-item h3 {
        font-size: 24px;
        margin-bottom: 10px;
        color: var(--main-head-color);
        font-family: "Ubuntu", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

    .advanced-item p {
        color: var(--main-font-color);
        font-family: "Ubuntu", sans-serif;
        font-weight: 300;
        font-style: normal;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    .advanced-item ul {
        padding-left: 18px;
        padding-left: 0; 
        list-style: none;
    }

    .advanced-item li {
        position: relative;
        padding-left: 20px; 
        margin-bottom: 6px;
        color: var(--secondary-font-color);
        font-family: "Ubuntu", sans-serif;
        font-weight: 300;
    }

        .advanced-item li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            background: #111827;
            border-radius: 50%;
        }



@media (max-width: 768px) {
    .advanced-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .advanced-item {
        flex-direction: column;
    }

        .advanced-item i {
            margin-bottom: 10px;
        }
}

/*HOW TO SECTION */

.how-to {
    padding: 80px 20px;
    background: var(--secondary-bg-color)
}

.how-to__container {
    max-width: 900px;
    margin: 0 auto;
}

.how-to__header {
    text-align: center;
    margin-bottom: 40px;
}

    .how-to__header h2 {
        font-size: 28px;
        font-weight: 400;
        color: var(--main-head-color);
        margin-bottom: 12px;
    }

.how-to__desc {
    font-size: 15px;
    color: var(--main-font-color);
    font-weight: 300;
}

.how-to__content {
    font-size: 16px;
    line-height: 1.7;
    color: var(--main-font-color);
    font-weight: 300;
}

    .how-to__content p {
        margin-bottom: 20px;
    }


.how-to__steps {
    list-style: none;
    counter-reset: step;
    padding-left: 0;
    margin-bottom: 25px;
}

    .how-to__steps li {
        position: relative;
        padding-left: 45px;
        margin-bottom: 18px;
        counter-increment: step;
    }

        .how-to__steps li::before {
            content: counter(step);
            position: absolute;
            left: 0;
            top: 2px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #111827;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
        }

/*FAQ*/

.faq {
    padding: 100px 20px;
    background: var(--main-bg-color);
}

.faq__container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq__header {
    text-align: center;
    margin-bottom: 60px;
}

    .faq__header h2 {
        font-size: 32px;
        margin-bottom: 12px;
        color: var(--main-head-color);
        font-family: "Ubuntu", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

.faq__desc {
    color: var(--main-font-color);
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1.6;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq__item {
    border-top: 1px solid #e5e7eb;
    padding: 20px 0;
}

    .faq__item:last-child {
        border-bottom: 1px solid #e5e7eb;
    }

    .faq__item summary {
        cursor: pointer;
        font-size: 18px;
        list-style: none;
        position: relative;
        padding-right: 25px;
        color: var(--main-head-color);
        font-family: "Ubuntu", sans-serif;
        font-weight: 400;
        font-style: normal;
    }

        .faq__item summary::-webkit-details-marker {
            display: none;
        }



        .faq__item summary::after {
            content: "+";
            position: absolute;
            right: 0;
            top: 0;
            font-size: 20px;
            transition: transform 0.2s ease;
        }



    .faq__item[open] summary::after {
        content: "x";
    }

.faq__content {
    margin-top: 10px;
}

    .faq__content p {
        color: var(--main-font-color);
        font-family: "Ubuntu", sans-serif;
        font-weight: 300;
        font-style: normal;
        line-height: 1.7;
    }

/*FOOTER*/

.site-footer {
    background: #111827;
    color: #cbd5e1;
    padding: 20px;
}

.footer__container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer__brand {
    flex: 1.5;
}

    .footer__brand h3 {
        color: #ffffff;
        margin-bottom: 4px;

    }

    .footer__brand p {
        line-height: 1.3;
        max-width: 450px;
        font-family: "Ubuntu", sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 14px;
        padding-top:.4rem;
    }

.footer__links {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

    .footer__links > div {
        flex: 1;
    }

    .footer__links h4 {
        color: #ffffff;
        margin-bottom: 15px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .footer__links ul {
        list-style: none;
        padding: 0;
    }

    .footer__links li {
        margin-bottom: 10px;
    }

    .footer__links a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s ease;
        font-family: "Ubuntu", sans-serif;
        font-weight: 300;
        font-style: normal;
        white-space: nowrap;
    }

        .footer__links a:hover {
            color: #ffffff;
        }

.footer__bottom {
    border-top: 1px solid #1f2937;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}

@media (max-width: 900px) {

    .footer__top {
        flex-direction: column;
        gap: 40px;
    }

    .footer__links {
        flex-direction: column;
        gap: 16px;
    }
}


/*ERRORS*/
.format-selector {
    display: inline-flex;
    gap: 6px;
    margin: 20px 0;
}

    .format-selector label {
        position: relative;
    }

    .format-selector input {
        display: none;
    }

    .format-selector span {
        padding: 6px 14px;
        border: 1px solid #e5e7eb;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        color: #0f172a;
        transition: all .2s ease;
    }

    .format-selector input:checked + span {
        background: #2563eb;
        border-color: #2563eb;
        color: #fff;
    }

    .format-selector span:hover {
        border-color: #2563eb;
    }

.result-preview {
    display: none;
    margin-top: 10px;
    text-align: center;
    margin-bottom:2rem
}

.preview-inner {
    padding: 10px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    max-width: 420px;
    margin: 0 auto;
}

.preview-text {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 500;
    color: #0f172a;
}

.preview-sub {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #475569;
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #e5e7eb;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.result-card {
    display: none;
    margin-top: 10px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    margin-bottom: 2rem
}

.result-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.result-title {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

.result-format {
    font-size: 13px;
    color: #475569;
}

.result-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

    .result-actions a,
    .result-actions button {
        padding: 8px 14px;
        font-size: 14px;
        border-radius: 6px;
        border: 1px solid #e5e7eb;
        /*background: #fff;*/
        cursor: pointer;
    }

    .result-actions a {
        background: var(--menu-color);
        color: #fff;
        border-color: var(--menu-color);
        text-decoration: none;
    }

    .result-actions button:hover {
        border-color: #2563eb;
    }

.error-card {
    display: none;
    margin-top: 10px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    margin-bottom: 2rem
}

.error-inner {
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.error-title {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

.error-message {
    font-size: 13px;
    color: #475569;
}

.error-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

    .error-actions button {
        padding: 8px 14px;
        font-size: 14px;
        border-radius: 6px;
        border: 1px solid #e5e7eb;
        /*background: #fff;*/
        cursor: pointer;
    }

        .error-actions button:hover {
            border-color: #2563eb;
        }

/*SUB PAGE STYLE*/
.breadcrumb {
    padding: 14px 0;
    border-bottom: 1px solid #e2e8f0;
    margin-top: 76px;
}

.breadcrumb__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--main-font-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

    .breadcrumb a:hover {
        color: #111827;
    }

.breadcrumb__separator {
    color: #cbd5e1;
    font-size: 12px;
}

.breadcrumb__current {
    color: var(--main-font-color);
    font-weight: 500;
}

.content-area {
    background: var(--main-bg-color);
}

.content__container {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.legal-header {
    padding-top: 2rem;
    margin-bottom: 2rem;
}

    .legal-header h1 {
        font-size: clamp(24px, 3.2vw, 30px);
        color: var(--main-head-color);
        font-weight: 500;
        line-height: 1.2;
    }

    .legal-header p {
        color: var(--main-font-color);
    }

.last-updated {
    margin-top: 4px;
    font-size: 14px;
    margin-bottom: 1rem;
}

.legal-section {
    margin-top: 2rem;
}

    .legal-section h2 {
        color: var(--main-head-color);
        font-size: 22px;
    }

    .legal-section h3 {
        color: var(--main-head-color);
        font-size: 16px;
        letter-spacing: -0.01em;
        padding-top: .5rem;
        padding-bottom: .5rem;
    }


    .legal-section p {
        color: var(--main-font-color);
        line-height: 1.8;
    }

    .legal-section ul {
        margin: 10px 0 6px;
        padding-left: 18px;
        list-style: disc;
    }

    .legal-section li {
        margin: 7px 0;
        line-height: 1.8;
        color: var(--main-font-color);
    }

    .legal-section ul li::marker {
        color: #03a0c7;
    }
    
    .legal-section a {
        text-decoration: none;
        border-bottom: 1px dashed rgba(255, 255, 255, .35);
    }

        .legal-section a:hover {
            border-bottom-style: solid;
        }


/*COOKIE BANNER*/

.cookie-consent {
    position: fixed;
    bottom: 30px;
    right: 30px; 
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    padding: 22px;
    max-width: 380px;
    width: calc(100% - 40px);
    z-index: 9999;
    display: none;
    font-family: inherit;    
    opacity: 0;
    transform: translateX(60px);
    animation: cookieSlideRight .5s ease forwards;
}

@keyframes cookieSlideRight {

    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cookie-text strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111827;
}

.cookie-text span {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
}

    .cookie-actions button {
        width: 100%;
        border: none;
        padding: 14px;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: all .2s ease;
    }

/* Accept */
.cookie-accept {
    background: var(--menu-color);
    color: #ffffff;
}

    .cookie-accept:hover {
        background: #111827;
    }

/* Reject */
.cookie-reject {
    background: #374151;
    color: #ffffff;
}

    .cookie-reject:hover {
        background: #111827;
    }

/* Manage */
.cookie-manage {
    background: #e5e7eb;
    color: #374151;
}

    .cookie-manage:hover {
        background: #d1d5db;
    }

@media (max-width:768px) {

    .cookie-consent {
        left: 16px;
        right: 16px;
        bottom: 20px;
        max-width: none;
        width: auto;
    }
}

/*HERO CONTENT V2*/

.hero-wrap {
    display: flex;
}

    .hero-wrap .hero-content {
        width: 50%;
        text-align: left;
        padding: 3rem 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-wrap .hero-tool {
        width: 50%;
        padding: 3rem 3rem;
    }

.panel {
    margin: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.accordion {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;    
    font-size: 16px;
}


.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.selected-value {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.accordion.active .selected-value {
    color: #6c5ce7;
}

.header-right i {
    transition: .2s;
    color: #666;
}

.accordion.active .header-right i {
    transform: rotate(180deg);
}

.accordion-header:hover {
    background: #fafafa;
}

.accordion-content {
    padding: 15px 20px 20px;
    display: none;
}

.accordion.active .accordion-content {
    display: block;
}

.option-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
}

    .option input {
        accent-color: #6c5ce7;
        cursor: pointer;
    }


.micro {
    margin-top: 8px;
    font-size: 12px;
    color: #888;
    text-align: left;
}

.summary {
    padding: 15px 20px;
    font-size: 13px;
    color: #555;
    background: #fafafa;
    text-align: right;
}

.button-wrap {
    padding: 20px;
    text-align: right;
}

button {
    background: #6c5ce7;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

    button:hover {
        opacity: .9;
    }


.icon i {
    transition: transform .2s ease;
    font-size: 14px;
    color: #666;
}

.accordion.active .icon i {
    transform: rotate(180deg);
}

.accordion-header:hover .icon i {
    color: #6c5ce7;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.selected-value {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.accordion.active .selected-value {
    color: #6c5ce7;
}

.header-right i {
    transition: .2s;
    color: #666;
}

.accordion.active .header-right i {
    transform: rotate(180deg);
}

.screenshot-form-wrap {
    display: flex;
    padding: 1rem
}

.locked .accordion-content {
    display: none !important;
}

.locked .accordion-header {
    pointer-events: none;
    cursor: default;
}

.locked .header-right i {
    display: none;
}

.features-summary i {
    padding-left: 2rem;
    margin-right: .5rem;
    color: var(--menu-color);
}

@media (max-width: 1090px) {
    .hero-wrap {
        flex-direction: column-reverse;
    }

        .hero-wrap .hero-content {
            width: 100%;
        }

        .hero-wrap .hero-tool {
            width: 100%;
        }
}

@media (max-width: 768px) {
    .screenshot-form-wrap {
        flex-direction: column;
    }

    .screenshot-form button {
        border-radius: 6px 6px 6px 6px;
        margin-top: 1rem;
    }

    .screenshot-form input {
        border-radius: 6px 6px 6px 6px;
    }

    .features-summary i {
        padding-left: 0rem;
        
    }
}

@media (max-width: 399px) {
    .hero-wrap .hero-content {
        padding: 3rem 1rem;
    }

    .hero-wrap .hero-tool {
        padding: 3rem 1rem;
    }
}