.navbar {
    padding: 16px 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.navbar .logo img {
    width: 50px;
    transition: transform 0.3s ease;
}

.navbar .logo img:hover {
    transform: scale(1.05);
}

.navbar .links {
    display: flex;
    gap: 20px;
}

.navbar .link {
    list-style: none;
    padding: 10px 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.navbar .link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.navbar .link a {
    color: inherit;
    text-decoration: none;
}


.custom-dialog{
    position: fixed;
    left: 0;
    right: 0;
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1rem;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 450px;
    z-index: 10;
    top: -1000px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #e7ecee;
}
.custom-dialog.show{
    top: 10%;
}
.hero .title {
    font-size: 3.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-color);
    animation: fadeInDown 0.6s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 42px;
}
.features button{
    margin-left: 0;
}
.feature-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 17px;
    width: 100%;
    max-width: 1200px;
    margin: 33px 0;
}

.feature-cards .feature-card {
    padding: 30px 17px;
    border: 5px solid #e5e5e5;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.feature-cards .feature-card:hover {
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-cards .feature-card:hover h5 {
    color: var(--dark-color);
}
.feature-cards .feature-card.checked{
    background: #ffffff;
    border-color: var(--primary-color);
    border-width: 5px;
    box-shadow: 0 2px 8px rgba(45, 107, 237, 0.1);
}
.feature-cards .feature-card.checked h5,
.feature-cards .feature-card.checked .icon {
    color: var(--primary-color);
}

.feature-card .icon {
    font-size: 40px;
    color: #505050;
    margin-bottom: 17px;
    transition: all 0.3s ease;
}

.feature-cards .feature-card:hover .icon {
    color: var(--primary-color);
    transform: scale(1.1);
}

.feature-card h5 {
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-card .checkbox {
    position: absolute;
    top: 23px;
    right: 28px;

    -webkit-appearance: none;
    appearance: none;
    /* For iOS < 15 to remove gradient background */
    background-color: #fff;
    /* Not removed via appearance */
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

.feature-card .checkbox::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    background-color: var(--primary-color);
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.feature-card .checkbox:checked::before {
    transform: scale(1);
}

.more-features{
    background-color: var(--primary-color);
    margin: 3rem 2rem;
    padding: 3rem 1rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(45, 107, 237, 0.25);
    transition: all 0.3s ease;
}

.more-features:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(45, 107, 237, 0.3);
}
.more-features .split{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 33px;
}
.more-features .split .image, .more-features .split .content{
    width: 46%;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.more-features .split .content h2 {
    color: white;
}

.more-features .split .content p,
.more-features .split .content li {
    color: white;
}
.more-features .split .image{
    overflow: hidden;
}
.more-features .split .image img{
    width: 100%;
}

.functionality{
    padding-top: 2rem;
}
.functionality .split{
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.functionality .split .custom-card{
    width: 30%;
    text-align: center;
}
.functionality .split .custom-card .image{
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.functionality .split .custom-card .image img{
    width: 70%;
}


.faq-section{
    /* padding-right: 10rem; */
    padding: 5rem 10rem;
    background-color: var(--secondary-color);
}
.faq-section .faq{
    margin-bottom: 43px !important;
}
.faq-answer{
    display: none;
}
.faq.active .faq-answer{
    display: block;
    margin-bottom: 18px;
}
.faq-section .faq-icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: black;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all .1s ease;
}
.faq.active .faq-icon{
    transform: rotate(180deg);
}

.footer{
    background-color: #E7ECEE;
    border-top: 1px solid #e0e8f0;
}

.footer .social-icon{
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(45, 107, 237, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer .social-icon:hover{
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 107, 237, 0.25);
}

.footer .social-icon i{
    font-size: 18px;
}
/* RECORDING PROGRESS AND FINISH VIEWS  */
.recording-progress, .recording-finish{
    padding: 1rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    background-color: #fff;
    display: none;
}
.recording-progress.active, .recording-finish.active{
    display: block;
}

.recordingTopNav .recording-icon{
    margin-left: 7px;
    cursor: pointer;
    font-size: 14px;
}
.recordingTopNav .recording-icon.active{
    color: var(--primary-color);
}
.recording-progress .main{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 83px;
}
.recording-progress .main .image{
    width: 50%;
    overflow: hidden;
}
.recording-progress .main .image img{
    width: 90%;
}
.recording-progress .main .content{
    width: 50%;
}

.recording-finish .split{
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 32px;
    margin-top: 60px;
}
.recording-finish .split .video{
    width: 65%;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #e0e8f0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.recording-finish .split .video video{
    width: 100%;
    max-height: 80vh;
    display: block;
}
.recording-finish .split .video.audio-only{
    background-color: #f8fafb;
    border: 2px solid #e0e8f0;
    border-radius: 14px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.recording-finish .split .video audio{
    width: 100%;
}

.recording-finish .options{
    padding: 0;
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.recording-finish .options .custom-btn{
    width: 100%;
    padding: 14px 16px !important;
    font-weight: 600;
}

.recording-finish .options .outline-btn {
    width: 100%;
    padding: 14px 16px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.recording-finish .options .outline-btn:hover {
    color: #ffffff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 107, 237, 0.2);
}

.recording-finish .options .go-pro{
    background: #f9fbff;
    border: 2px solid var(--primary-color);
    padding: 24px;
    border-radius: 14px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(45, 107, 237, 0.08);
}

.recording-finish .options .go-pro h5 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
}

.recording-finish .options .go-pro p {
    color: #555;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
}

/* TOOLTIP STYLES */
.sound-tooltip {
    display: none;
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    padding: 24px;
    width: 380px;
    z-index: 100;
    cursor: default;
    border: 1px solid #e0e8f0;
    text-align: left;
    animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.sound-tooltip[data-recording="1"],
.sound-tooltip[data-dismissed="1"] {
    display: none !important;
}

.sound-tooltip .close-tooltip {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 16px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s ease;
}

.sound-tooltip .close-tooltip:hover {
    color: #333;
}

.sound-tooltip::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-top: 1px solid #e7ecee;
    border-left: 1px solid #e7ecee;
}

.feature-card.checked + .sound-tooltip {
    display: block;
}

.sound-tooltip-dot {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.sound-tooltip .tip-header {
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 15px;
}

.sound-tooltip .tip-body {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 500;
}

.sound-tooltip .tip-body .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.sound-tooltip .tip-footer {
    font-size: 12.5px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #eee;
    padding-top: 16px;
}

/* BELOW-HERO BANDS */
.band{
    padding: 3.5rem 0;
}
.band + .band{
    padding-top: 0;
}
.band-split{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.band-copy{
    flex: 1 1 520px;
}
.band-visual{
    flex: 0 0 420px;
    display: flex;
    justify-content: center;
}
.band-visual img{
    width: min(420px, 100%);
    height: auto;
}
.band-bullets{
    margin: 0;
    padding-left: 18px;
    color: #2b2b2b;
}
.band-bullets li{
    margin: 10px 0;
}
.band-note{
    font-size: 13px;
    color: #666;
}

.how-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 24px;
}
.how-card{
    border: 1px solid #e0e8f0;
    border-radius: 14px;
    padding: 28px 22px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}
.how-ill{
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.how-ill img{
    width: min(240px, 100%);
    height: auto;
}
.how-card h3{
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.how-card:hover h3 {
    color: var(--primary-color);
}
.how-note{
    font-size: 13px;
    color: #666;
}

.band-trust {
    background: #ffffff;
    border-bottom: 1px solid #e0e8f0;
}

.band-highlights {
    background: #f6f9ff;
    border-bottom: 1px solid #e0e8f0;
}

.band-usecases {
    background: #ffffff;
    border-bottom: 1px solid #e0e8f0;
}

.band-compare {
    background: #ffffff;
    border-bottom: 1px solid #e0e8f0;
    padding: 4rem 0 5rem 0;
}

.compare-head {
    margin-bottom: 3rem;
    text-align: left;
}

.compare-head h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.band-final-cta {
    background: #ffffff;
}
.highlights-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 20px;
}
.highlight-card{
    background: #fff;
    border: 1px solid #e0e8f0;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(45, 107, 237, 0.12);
}
.highlight-card i{
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

.highlight-card:hover i {
    transform: scale(1.15);
}

.highlight-card h3{
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
}

.usecases-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 18px;
}
.usecase-card{
    border: 1px solid #e0e8f0;
    border-radius: 14px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.usecase-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(45, 107, 237, 0.12);
}
.usecase-card img{
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}
.usecase-card h3{
    font-size: 16px;
    font-weight: 600;
}

.compare-table-wrap{
    overflow-x: auto;
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(45, 107, 237, 0.12);
}
.compare-table{
    width: 100%;
    border-collapse: collapse;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
}
.compare-table th,
.compare-table td{
    padding: 20px 18px;
    border-bottom: 1px solid #e7ecee;
    text-align: left;
    vertical-align: middle;
    transition: all 0.3s ease;
    font-weight: 500;
}
.compare-table thead th{
    background: var(--primary-color);
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
    text-transform: none;
}
.compare-table tbody tr:hover {
    background-color: #f9fbff;
}
.compare-table .pro-col{
    background: linear-gradient(135deg, #e8f0ff 0%, #f0f5ff 100%);
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
}

.compare-table thead th.pro-col {
    background: var(--primary-color);
    color: #ffffff;
    font-size: 17px;
    letter-spacing: 0.3px;
}
.compare-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 2.5rem;
}

.compare-note{
    font-size: 13px;
    color: #333;
    margin-top: 0 !important;
    font-weight: 500;
    display: block;
}

.compare-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.compare-note a:hover {
    text-decoration: underline;
}

/* FAQ ACCORDION */
.faq-section{
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(45, 107, 237, 0.12), transparent 30%),
        radial-gradient(circle at 88% 28%, rgba(116, 185, 255, 0.18), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 72%);
    border-top: 1px solid #dbe7fb;
    border-bottom: 1px solid #dbe7fb;
    padding: 6rem 10rem;
}

.faq-section::before {
    content: "";
    position: absolute;
    inset: 34px auto auto 8%;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(45, 107, 237, 0.16);
    border-radius: 32px;
    transform: rotate(16deg);
}

.faq-section .custom-container {
    position: relative;
    z-index: 1;
}

.faq-header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}



.faq-section h2 {
    color: var(--dark-color);
    margin-bottom: 12px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.4px;
}

.faq-header p {
    max-width: 590px;
    margin: 0 auto;
}

.faq-shell {
    display: grid;
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.65fr);
    gap: 24px;
    align-items: start;
}

.faq-aside {
    position: sticky;
    top: 24px;
    padding: 28px;
    min-height: 330px;
    border: 1px solid rgba(45, 107, 237, 0.14);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(17, 24, 39, 0.92), rgba(28, 74, 165, 0.9)),
        #111827;
    color: #fff;
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.2);
    overflow: hidden;
}

.faq-aside::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.faq-aside-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: #111827;
    background: #ffffff;
    border-radius: 18px;
    font-size: 23px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.faq-aside h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 12px;
}

.faq-aside p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    margin-bottom: 26px;
}

.faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.faq-cta:hover {
    color: #d9e8ff;
}

.faq-cta i {
    transition: transform 0.25s ease;
}

.faq-cta:hover i {
    transform: translateX(4px);
}
.faq-list{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item{
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(45, 107, 237, 0.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(20, 46, 95, 0.06);
    backdrop-filter: blur(14px);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(45, 107, 237, 0.24);
    box-shadow: 0 22px 54px rgba(20, 46, 95, 0.1);
}

.faq-item:has(.faq-q[aria-expanded="true"]) {
    border-color: rgba(45, 107, 237, 0.32);
    background: #ffffff;
}

.faq-q{
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 22px 24px;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    color: var(--dark-color);
    transition: all 0.2s ease;
}

.faq-q span {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-q small {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--primary-color);
    background: rgba(45, 107, 237, 0.1);
    border-radius: 13px;
    font-size: 12px;
    font-weight: 800;
}

.faq-q:hover {
    color: var(--primary-color);
}

.faq-q:focus-visible{
    outline: 3px solid rgba(45,107,237,.25);
    outline-offset: -3px;
}

.faq-q i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #fff;
    background: var(--primary-color);
    border-radius: 50%;
    font-size: 14px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
}

.faq-q[aria-expanded="true"] i {
    transform: rotate(45deg);
    background: #111827;
}

.faq-a{
    padding: 0 78px 24px 78px;
    color: #56647a;
    line-height: 1.7;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FINAL CTA */
.final-cta{
    border: 1px solid #e0e8f0;
    border-radius: 16px;
    padding: 48px 28px;
    text-align: center;
    background: #f6f9ff;
    box-shadow: 0 2px 8px rgba(45, 107, 237, 0.08);
    transition: all 0.3s ease;
}

.final-cta:hover {
    box-shadow: 0 4px 12px rgba(45, 107, 237, 0.12);
    transform: translateY(-2px);
}
.final-cta-meta{
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    color: #555;
    font-size: 13px;
}
.final-cta-meta i{
    color: var(--primary-color);
}
