:root {
    --primary-color: #C667FF;
    --secondary-color: #9D34D4;
    --background-color: #F5F5F7;
    --text-color: #1e293b;
    --light-grey: #e2e8f0;
    --error-color: #dc2626;
}

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

body {
    font-family: "SF Pro Text",  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

@media (max-width: 830px) {
    .container {
        margin-top: 0;
        padding: 0 15px;
    }
    .header {
        height: auto;
        min-height: 420px;
        padding: 40px 0 !important;
        margin-bottom: 50px;
    }

    .header h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
        padding: 0 10px;
        color: var(--text-color);
        margin-bottom: 8px;
    }
    .topic-input-cta {
        margin-bottom: 30px;
        color: var(--text-color);
        font-size: 1.2;
    }
    .input-wrapper {
        width: 100%;
        height: 50px;
        min-height: 50px;
        margin-bottom: 20px !important;
    }
    .pink-section,
    .process-section {
        padding: 40px 15px;
    }

    .pricing-section, .stripe-badge-bar {
        background-image: none !important;
        background-color: #fff
    }
    

    .pack-container {
        background-color: #f8f8fa !important;
    }
    .section-title {
        font-size: 1.8rem !important;
        margin: 20px 0;
    }
    .faq-container-centered h1 {
        font-size: 1.6rem !important;
        margin: 20px 0;
    }

    .process-boxes {
        gap: 20px;
    }
    .process-box {
        padding: 20px;
    }
    .features-grid {
        gap: 20px;
        padding: 0;
    }
    .feature-item {
        padding: 15px;
    }
    .white-p {
        font-size: 1.2rem !important;
        margin-bottom: 30px;
    }
    .faq-container-centered {
        width: 95%;
        padding: 20px 0;
    }
    .accordion {
        width: 100%;
    }
    .accordion-title {
        font-size: 17px !important;
        padding-right: 40px !important;
        line-height: 1.5 !important;
    }

}

@media (min-width: 480px) {
    .container {
        margin-top: 60px;
        padding: 0 10px;
    }

    .input-wrapper {
        width: 100%;
        height: 60px;
        min-height: 60px;
        margin-bottom: 30px !important;
    }
    .feature-item,
    .process-box {
        padding: 20px;
    }
    .section-title {
        font-size: 2rem;
    }
    .white-p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    .pack-container {
        width: 95%;
    }

    .header {
        padding: 20px 0 !important;
        height: auto;
        min-height: 400px;
    }

}

@media (max-width: 830px) and (min-width: 600px) {
  .process-boxes {
    max-width: 600px !important;
  }

  .process-box {
    min-width: 450px !important;
    width: 100% !important;
  }
}


@media (max-width: 400px) {
    .logo-text {
        font-size: 1.2rem;
    }
    .logo {
        height: 28px;
    }

    .container {
        margin-top: 100px;
    }

    .topic-input-cta {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 500px) {
    .logo-text {
        display: none;
    }

    .nav-links a {
        background-color: var(--primary-color) !important;
        border-radius: 40px !important;
        padding: 5px 35px 5px 25px !important;
        color: #fff !important;
    }
    .nav-links a svg {
        color: #fff !important;
        opacity: 1 !important;
        top: 50%; 
        right: 15px; 
        stroke-width: 2.5 !important;
        transform: translateY(-50%) translateX(0) !important; 
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0);
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.text-logo {
    display: flex !important;
    align-items: center !important;
    margin-left: 0;
}

.logo {
    margin-right: 10px;
    height: 30px;
    width: auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    white-space: nowrap;
    color: var(--text-color);
    margin-left: 0;
    text-decoration: none !important;
}

.navbutton {
    background-color: var(--primary-color);
    padding: 2px 14px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    color: #fff !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbutton:hover {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color) !important;
}

@media (max-width: 625px) {
    .navbutton {
        display: none;
    }
}

.nav-links {
    margin-left: auto;
    margin-right: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 40px;
}

.nav-links a {
    margin-left: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative; 
    padding-right: 20px; 
}


.nav-links svg {
    color: transparent;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute; 
    right: 0; 
    top: 45%; 
    transform: translateY(-50%) translateX(-6px);
    opacity: 0; 
}

.nav-links a:hover svg {
    color: var(--text-color);
    opacity: 1;
    transform: translateY(-50%) translateX(0); 
}


@media (max-width: 1285px) {
    .nav-links.centered {
        display: none !important;
    }
}
.nav-links.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
}

.container {
    margin: 60px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 100;
}

@media (max-width: 700px) {
    .section-title {
        font-size: 1.6rem !important;
        margin-bottom: 10px;
        padding: 0;
    }

}

.header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0;
    z-index: 10;
    padding: 20px;
    height: 38vw;
    border-radius: 8px;
    background-image: radial-gradient(circle, lightgray 6%, transparent 10%);
    background-size: 25px 25px;
}

.header-badge {
    background-color: #ffde5a;
    border: none;
    color: #1e293b;
    border-radius: 20px;
    padding: 1px 16px !important;
    width: fit-content;
    font-weight: 550;
    font-size: 1.2rem;
}

.logo-badge {
    background-color: #c5f389;
    border: none;
    color: #1e293b;
    margin-left: 8px;
    border-radius: 20px;
    padding: 0 14px !important;
    width: fit-content;
    font-weight: 550;
    font-size: 1rem;
    display: none;
}

@media (max-width: 750px) {
    .header-badge {
        font-size: 1rem;
    }

    .logo-badge {
        font-size: 1rem;
    }
}

@media (max-width: 445px) {

    .logo-badge {
        display: none !important;
    }
}

.header h1 {
    font-size: 3rem;
    line-height: 1.3;
    padding: 0 10px;
    color: var(--text-color);
    margin-bottom: 15px;
    margin-top: 20px;
    font-family: "SF Pro Display",  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.topic-input-cta {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 1.3rem;
    background-color: #F5F5F7;
}

.centered-div {
    justify-content: center;
    align-items: flex-start;
    height: auto;
    margin-top: 0;
}

.rb-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    height: 0px;
}

.rb-pill {
    background: #F5F5F7;
    border-radius: 50px;
    padding: 20px 30px 8px 30px;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 50px;
    box-sizing: border-box;
}

@media (max-width: 1310px) {
    .rb-pill {
        display: none;
    }
}

.rb-left-section {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rb-star {
    font-size: 16px;
    line-height: 1;
}

.rb-rating {
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    line-height: 1;
}

.rb-reviews {
    font-size: 15px;
    font-weight: 400;
    color: #64748B;
    line-height: 1;
}

.rb-divider {
    border-radius: 5px;
    margin-left: 6px;
    margin-right: 6px;
    width: 1.5px;
    height: 20px;
    background: #e5e7eb;
}

.rb-right-section {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rb-trend {
    font-size: 14px;
    line-height: 1;
}

.rb-rank {
    font-size: 15px;
    font-weight: 700;
    color: #1E293B;
    line-height: 1;
}

.rb-label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1;
}

.rb-domain {
    font-size: 15px;
    font-weight: 400;
    color: #64748B;
    line-height: 1;
}

.download-icon {
    margin-top: 10px;
}

.legals-disclaimer {
    text-align: center;
    margin: 20px 0;
}

.live-counter {
    margin-top: 20px;
    margin-right: 20px;
    margin-left: auto;
    background: white;
    padding: 8px 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    border: 1px solid #cbd5e04d;
    width: 300px;
    text-align: left;
    z-index: 999;
}

.live-indicator {
    float: right;
    margin-right: 4px;
    font-weight: 600;
}

.live-counter .live-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    margin-right: 2px;
    margin-bottom: 1.3px;
    animation: pulse 2s ease-in-out infinite;
}

.live-counter .count {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4a5568;
    margin: 0 0 5px;
}

.live-counter .label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #4a5568;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}


.tiny-live-counter {
    margin-left: auto;
    background: white;
    padding: 8px 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: 1px solid #cbd5e04d;
    width: 250px;
    text-align: left;
    z-index: 3200;
    position: fixed;
    bottom: 8px;
    right: 8px;
    display: none;
}

.tiny-live-indicator {
    float: right;
    margin-right: 4px;
    font-weight: 600;
}

.tiny-live-counter .tiny-live-dot {
    width: 5px;
    height: 5px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    margin-right: 1px;
    margin-bottom: 1.4px;
    animation: pulse 2s ease-in-out infinite;
}

.tiny-live-counter .tiny-count {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4a5568;
    margin: 0 0 5px;
}

.tiny-live-counter .tiny-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #4a5568;
    text-align: right;
}

.email-updates-container {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 40px auto 100px !important;
}

.email-header {
    text-align: center;
    margin-bottom: 40px;
}

.email-header h2 {
    font-size: 1.8rem;
    margin: 0 0 5px;
    color: var(--text-color);
}

.email-header p {
    margin: 0;
    color: var(--text-color);
    opacity: 0.8;
}

.email-input-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.email-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--light-grey);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: "SF Pro Text",  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-weight: 500;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.subscribe-button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 40px;
    font-size: 1rem;
    width: 132px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 2px solid var(--primary-color);
    font-family: "SF Pro Text",  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-weight: 500;
}

.subscribe-button:hover {
    background-color: transparent !important;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.additional-text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}

@media (max-width: 600px) {
    .email-updates-container {
        padding: 20px;
        margin: 20px;
    }

    .email-input-wrapper {
        flex-direction: column;
    }

    .subscribe-button {
        width: 100%;
    }
}

.whitespace {
    height: 40px;
}

.email-updates-container {
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.email-updates-container h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.email-updates-container p {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 20px;
}

.email-input-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.email-input {
    flex: 1;
    padding: 10px 20px;
    border: 2px solid var(--light-grey);
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

@media (max-width: 600px) {
    .email-updates-container {
        margin: 20px 15px;
        padding: 15px;
    }

    .email-input-wrapper {
        flex-direction: column;
    }

    .subscribe-button {
        width: 100%;
    }
}
.input-wrapper.floating {
    position: fixed !important;
    bottom: 0px; 
    left: 50%; 
    transform: translateX(-50%) translateY(50px);
    opacity: 0;
    background-color: #ffffff74 !important;
    backdrop-filter: blur(10px);
    display: flex !important;
    align-items: center;
    z-index: 1200;
}

.input-wrapper.floating input {
    background-color: #ffffff74 !important;
    backdrop-filter: blur(10px);
}

@media (max-width: 800px) {
    .input-wrapper.floating {
        display: none !important;
    }
}

@media (max-width: 750px) {
    .header h1 {
        font-size: 1.5rem !important;
        line-height: 1.3;
        padding: 0 10px;
        color: var(--text-color);
    }

    .input-wrapper {
        height: 54px !important;
        font-size: 0.85rem !important;
        min-height: 54px !important;
    }

    .input {
        padding-left: 20px !important;
        font-size: 1.1rem;
    }

    .send-prompt-btn {
        height: 42px !important;
        width: 42px !important;
    } }

.input-wrapper {
    width: 100%;
    max-width: 500px;
    height: 60px;
    position: relative;
    margin: 0 auto;
    min-height: 60px;
    border-radius: 50px;
    padding: 0;
    border: 2px solid var(--light-grey);
    font-size: 1.1rem;
    resize: none;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    outline: none;
    opacity: 1; 
    transition:
        transform 500ms ease-out, 
        opacity 200ms ease-out, 
        left 200ms ease-out, 
        width 400ms ease-out;
    font-family: "SF Pro Text",  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
            font-weight: 500;
    }


.input-wrapper:focus-within {
    outline: none;
    border-color: var(--primary-color);
}

.input {
    flex-grow: 1;
    height: 100%;
    border: none;
    outline: none;
    padding-left: 20px;
    background-color: #ffffff;
    color: black;
    font-size: 1.2rem;
    border-radius: 50px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #292524 inset;
    -webkit-text-fill-color: #ffffff;
}

.send-prompt-btn {
    height: 48px;
    width: 48px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 4px;
    right: 4px;
    transition: all 0.3s;
}

.input-wrapper:active .icon {
    transform: scale(1.3);
}

.send-prompt-btn:hover {
    color: white;
}

.send-prompt-btn:hover .arrow {
    margin-right: 0;
    animation: jello-vertical 0.9s both;
    transform-origin: right;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.32);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 30px;
    border: none;
    width: 100%;
    max-width: 500px;
    border-radius: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    height: auto; 
    max-height: 80vh; 
    overflow-y: auto; 
}


.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:focus,
.close:hover {
    text-decoration: none;
}

.youtube-input-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 600px;
    margin: 40px auto 0;
}

.youtube-input-wrapper input {
    width: 100%;
    padding: 15px 60px 15px 20px;
    border-radius: 30px;
    border: 2px solid var(--light-grey);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.youtube-input-wrapper input:focus {
    outline: none;
    border-color: #FF3130;
    box-shadow: 0 0 0 3px rgba(255, 103, 103, 0.25);
}

.youtube-input-wrapper .send-prompt-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FF3130;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.youtube-input-wrapper .send-prompt-btn:hover {
    background-color: #c50000;
}

.error-message {
    color: var(--error-color);
    margin-top: 10px;
    display: none;
}

.youtube-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: white;
    color: var(--text-color);
    border: 2px solid var(--light-grey);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 1rem;
    cursor: not-allowed;
    transition: all 0.3s ease;
    margin: -10px auto 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    opacity: 0.5;
    display: none;
}

.youtube-button:hover {
    background-color: #f8f8f8;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 700px) {
    .examples-section {
        display: none !important;
    }

}
.examples-section {
    height: 530px !important;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 30px;
    background-color: var(--light-grey);
}

.examples-container {
    display: flex;
    position: absolute;
    gap: 30px;
    height: 380px;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    padding: 0 20px;
}

.example-card {
    width: 300px;
    height: 300px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    position: relative;
    cursor: pointer;
    border: 0px solid white;

}

.example-card:hover {
    border: 3px solid var(--primary-color);
    transition: all 0.1 ease;
}

.example-card:hover .example-image,
.example-card:hover .example-text {
    filter: blur(3px);
    opacity: 0.2;
}

.view-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-color);
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.example-card:hover .view-text {
    opacity: 1;
}

.example-card a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.example-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.example-text {
    padding: 15px;
    text-align: center;
    font-weight: 500;
    color: var(--text-color);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.examples-section:hover .examples-container {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .examples-section {
        height: 300px;
    }

    .example-card {
        width: 240px;
        height: 280px;
    }

    .example-image {
        height: 220px;
    }
}
@media (max-width: 800px) {
    .examples-section {
        display: none;
    }
}

.youtube-feature-section {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 0;
    overflow: hidden;
    margin: 40px 0;
    display: block;
}

.youtube-feature-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px;
}

.youtube-feature-text {
    flex: 1;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.youtube-feature-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.youtube-feature-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.youtube-feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.youtube-feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.feature-check {
    margin-right: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

.youtube-feature-button {
    background-color: #FF3130;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
}

.youtube-feature-button:hover {
    background-color: #FF3130;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.youtube-feature-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.youtube-demo-video {
    max-width: 90%;
    background-color: #FF3130;
    border-radius: 12px;
    height: auto;
}

@media (max-width: 900px) {
    .youtube-feature-content {
        flex-direction: column;
        min-height: auto;
    }

    .youtube-feature-text {
        padding: 40px 20px;
    }

    .youtube-feature-text h2 {
        font-size: 2rem;
    }

    .youtube-feature-image {
        display: none;
    }
}

@media (max-width: 900px) {
    .youtube-feature-content {
        flex-direction: column;
        min-height: auto;
    }

    .youtube-feature-text {
        padding: 40px 20px;
    }

    .youtube-feature-text h2 {
        font-size: 2rem;
    }

    .youtube-feature-image {
        display: none;
    }
}

.youtube-link {
    text-align: center;
    border-radius: 10px;
    padding: 0.5rem 1rem;
}

.youtube-link:hover {
    background-color: rgba(0, 0, 0, 0.035);
}

.lists {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.list span {
    border-radius: 50%;
    background-color: var(--text-color);
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list span svg {
    height: 15px;
    width: 15px;
    stroke: #ffffff;
    stroke-width: 3px;
}

.list p {
    display: block;
}

.button-container {
    margin-top: 20px;
    padding: 0;
}

.button-container a {
    display: block;
    width: 100%;
    margin-top: 30px;
    text-align: center;
    text-decoration: none;
    background-color: var(--text-color);
    padding: 8px 20px;
    font-size: 1.1rem;
    color: var(--background-color);
    outline: 0;
    border-radius: 30px;
    transition: 0.3s background-color ease;
}

.button-container a:hover {
    background-color: #111111;
    border-radius: 40px;
}

.roadmap-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    background-image: radial-gradient(circle, lightgray 6%, transparent 10%);
    background-size: 25px 25px;
}

@media (max-width: 768px) {
    .roadmap-container {
        padding: 15px;
    }

    .roadmap-ul {
        padding: 0 10px;
    }

    .roadmap-li {
        font-size: 1rem !important;
        margin: 8px 0;
    }
}

.roadmap-ul {
    list-style-type: none;
    background-color: #F5F5F7;
    padding: 0 10px;
    border-radius: 15px;
    text-align: left !important;
}

.roadmap-li {
    font-size: 1rem;
    margin: 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    max-width: 100%;
}

.roadmap-item-done {
    background-color: #B4FFA0;
    padding: 3px 8px;
    border-radius: 20px;
    margin-right: 10px;
}

.roadmap-item-soon {
    background-color: #ffe2a0;
    padding: 3px 8px;
    border-radius: 20px;
    margin-right: 10px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-color);
    margin: 10px 0 20px;
    font-family: "SF Pro Display",  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.process-section {
    padding: 40px 20px;
    background-color: #ffffff !important;
}

.process-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1000px;
}

.process-box {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 20px;
    background-color: #F5F5F7;
    border-radius: 20px;
    font-weight: 400;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.process-title {
    display: flex;
    align-items: center;

}

.process-title h3 {
    font-weight: 700;
    margin: 0 0 10px;
}

.process-number {
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    padding: 3px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: 10px;

}

.process-img {
    width: 100%;
    height: 120px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

@media (max-width: 981px) {
    .reviews-section {
        padding: 40px 20px !important;
    }
}

.reviews-section {
    width: 100%;
    padding: 40px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--light-grey);
}

.ratings-summary {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    height: 70px;
    width: 250px;
}

.rating-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.star-average {
    display: flex;
    align-items: center;
    gap: 8px;
}

.star {
    color: #ffe65b;
    position: relative;
    margin-bottom: 3px;
}

.average-number {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-color);
}

.rating-subtext {
    color: #64748b;
    margin: 0 0 0 8px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin: 20px auto;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

@media (max-width: 980px) {
    .review-card-3 {
        display: none;
    }
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.review-username {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.review-text {
    color: #4a5568;
    line-height: 1.6;
    margin: 0 0 20px;
    flex-grow: 1;
    text-align: left;
}

.review-platform {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.platform-logo {
    height: 35px;
    width: auto;
    opacity: 0.7;
}
@media (max-width: 981px) {
    .review-carousel {
        display: none !important;
    }
}

@media (min-width: 981px) {
    body {
        overflow-x: hidden;
    }
    
    .reviews-grid {
        display: none; 
    }
    
    .carousel-container {
        width: 100%;
        overflow: hidden;
        position: relative;
        margin: 20px auto;
    }
    
    .review-carousel {
        display: flex;
        width: fit-content;
    }

    @keyframes scroll-reviews {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }
    
    .carousel-card {
        background: white;
        border-radius: 20px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        width: 300px;
        margin-right: 20px;
        flex-shrink: 0;
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.pink-section {
    padding: 40px 20px;
    background: linear-gradient(to bottom, #ba71e3, #b75de4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pink-section h2 {
    color: #ffffff;
}

.white-p {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 40px;
    margin-top: -20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.feature-item {
    text-align: left;
    padding: 10px 20px 20px;
    border-radius: 20px;
    background: #F5F5F7;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.feature-icon svg {
    margin-bottom: 15px;
    height: 35px;
    width: 35px;
    display: block;
    margin: 10px 10px 20px 0;
    color: var(--primary-color);
}

.faq-container-centered {
    display: flex;
    padding-top: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 90%;
    margin: 0 auto;
}

.faq-container-centered h1 {
    margin-bottom: 40px;
    line-height: 1.4;
    font-size: 2rem;
}

.accordion {
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 30px;
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 0.5em 0;
    color: var(--text-color);
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    transition: color 0.1s ease;
}

.accordion button:focus,
.accordion button:hover {
    cursor: pointer;
}

.accordion button:focus::after,
.accordion button:hover::after {
    cursor: pointer;
    color: var(--text-color);
}

.accordion-item {
    margin: 10px;
    padding: 0px 16px 0px 16px;
    border: 2px solid var(--light-grey);
    border-radius: 20px;
    background-color: var(--light-grey);
}

.accordion-title {
    font-size: 20px;
    font-weight: 500;
    max-width: 80vw;
    display: inline-block;
    word-wrap: break-word;
    white-space: normal;
    font-family: "SF Pro Text",  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.accordion button .accordion-title {
    padding: 0.5em 0.5em 0.5em 0;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 18px;
    height: 18px;
    border: 1px solid;
    border-radius: 22px;
    background-color: var(--background-color);
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background-color: var(--background-color);
}
.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background-color: #969696;
}
.accordion button .accordion-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.3s ease;
}

.accordion button[aria-expanded='true'] .accordion-icon {
    transform: translateY(-50%) rotate(-90deg);
}

.accordion button .icon::after,
.accordion button .icon::before {
    display: none;
}
.accordion button[aria-expanded='true'] {
    color: var(--text-color);
}
.accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
    opacity: 1;
    max-height: 300px;
    transition: all 0.9s ease;
    will-change: opacity, max-height;
}
.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    will-change: opacity, max-height;
    text-align: left !important;
    padding: 0px;
}
.accordion .accordion-content p {
    font-size: 1.1rem;
    margin: 1.5em 0 0.8em 0;
}

@media (max-width: 768px) {
    .process-box {
        min-width: 100%;
    }

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

        footer {
            background: #1E293B;
            color: white;
            padding: 2rem 0;
            margin-top: auto;
        }

        .footer-content {
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-rows: auto 1fr auto;
            min-height: 10px;
            position: relative;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-icons {
            display: flex;
            gap: 20px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-logo img {
            width: 32px;
            height: 32px;
            border-radius: 6px;
        }

        .footer-logo span {
            font-size: 1.3rem;
            color: #94a3b8;
            font-family: 'Open Sans', sans-serif;
            font-weight: 800;
            white-space: nowrap;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            align-items: center !important;
            justify-content: center;
            flex: 1;
        }

        .footer-link {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.2s ease;
        }

        .footer-link:hover {
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .footer-middle {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .footer-contact p {
            margin: 0;
            font-size: 0.9rem;
            color: #cbd5e1;
        }

        .footer-email a {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .footer-email a:hover {
            color: #fff;
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .footer-social {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background: rgba(198,103,255,0.1);
        }

        .social-icon svg {
            width: 18px;
            height: 18px;
            fill: #94a3b8;
            transition: fill 0.2s ease;
        }

        .social-icon:hover svg {
            fill: #C667FF;
        }

        .footer-bottom {
            display: flex;
            justify-content: flex-end;
            margin-top: 2rem;
            position: absolute;
            bottom: 0;
            right: 2rem;
        }

        .copyright {
            color: #94a3b8;
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-rows: auto auto auto;
                min-height: auto;
            }

            .footer-links {
                flex-wrap: wrap;
                gap: 1rem;
                margin-top: 40px;
                margin-bottom: 40px;
            }

            .footer-middle {
                flex-direction: column;
                gap: 1.5rem;
                align-items: flex-start;
            }

            .footer-bottom {
                justify-content: flex-start;
            }
        }

        @media (max-width: 480px) {
            footer {
                padding: 1.5rem 0;
            }

            .footer-content {
                padding: 0 1rem;
            }

            .footer-middle {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
                height: 100px !important;
            }
        }

.get-started-button {
    width: 225px;
    height: 45px;
    border-radius: 45px;
    transition: all 0.3s;
    cursor: pointer;
    background: var(--text-color);
    font-size: 1.2em;
    font-weight: 550;
    color: #ffffff;
    padding: 8px 20px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-started-button:hover {
    background: #000;
    color: white;
}


@media (max-width: 750px) {
    .launch-platform-badge {
        display: flex;
        align-items: center;
        height: 40px;
    }

    .count {
        display: flex;
        align-items: right;
        height: 40px;
        margin: 0;
    }

}
@media (max-width: 775px) {
   .launch-platform-badge-2 {
        display: none;
    }

}


@media (max-width: 920px) {
    .launch-platform-badge {
        display: none;
    }
    .count {
        display: flex;
        align-items: right;
        height: 40px;
        margin: 0;
    }
}

.categories-bar {
    height: 10px;
    background: var(--light-grey);
    overflow: hidden;
    position: relative;
    width: 100%;
    display: none;
}

@media (max-width: 750px) {
    .categories-bar {
        display: none;
    }
}

.categories-container {
    display: flex;
    position: absolute;
    animation: scroll 30s linear infinite;
    padding: 0 20px;
    gap: 15px;
    height: 100%;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    display: none;
}

.category-badge {
    padding: 5px 15px;
    border-radius: 15px;
    color: #333;
    font-weight: 400;
    font-size: 1.1rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 35px;
    margin: 8px 0;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-badge:hover {
    transform: translateY(-1px);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.contact-link {
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.contact-link:hover svg {
        animation: jello-vertical 0.9s both;
        transform-origin: left;
}

@keyframes jello-vertical {
        0% {
            transform: scale3d(1, 1, 1);
        }
        30% {
            transform: scale3d(0.75, 1.25, 1);
        }
        40% {
            transform: scale3d(1.25, 0.75, 1);
        }
        50% {
            transform: scale3d(0.85, 1.15, 1);
        }
        65% {
            transform: scale3d(1.05, 0.95, 1);
        }
        75% {
            transform: scale3d(0.95, 1.05, 1);
        }
        100% {
            transform: scale3d(1, 1, 1);
        }
}

.manual-button-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.manual-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    background-color: #ffffff;
    color: #1e293b;
    border: 2px solid var(--light-grey);
    border-radius: 40px;
    height: 43px;
    width: 180px; 
    font-weight: 500;
    cursor: pointer;
    transition: width 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-top: -9.5px;
    overflow: hidden;
    padding-left: 11px;
    transition: all 0.3s ease;
}

.manual-btn:hover {
    background-color: #f9f9f9;
    width: 180px;
}

.manual-icon {
    position: relative;
    color: #1e293b;
    min-width: 20px;
    margin-right: 15px !important;
    z-index: 2;
}

.manual-icon {
    color: #1e293b;
    margin-right: 10px;
}
.manual-icon .rotatable-group {
    transform-origin: center center; 
    transition: transform 0.2s ease; 
  }

 .manual-btn:hover .manual-icon .rotatable-group {
    transform: rotate(7deg); 
  }


.manual-text {
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.3s ease;
    position: absolute;
    left: 40px;
    font-size: 1rem;
    font-weight: 400;
    z-index: 1;
}

.manual-btn:hover .manual-text {
    opacity: 1;
}

[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(30, 41, 59, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 1; 
    visibility: visible; 
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}
.white-section {
    padding: -20px 20px;
    border-radius: 20px;
    margin: 30px auto;
    max-width: 1200px;
}

@media (max-width: 768px) {
    .what-is-mindmap-container {
        flex-direction: column;
    }

    .what-is-mindmap-image {
        display: none !important;
    }
}

.what-is-mindmap-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 2000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.what-is-mindmap-container h2 {
    color: var(--text-color);
    text-align: left;
}

.what-is-mindmap-text {
    flex: 1;
    text-align: left;
}

.what-is-mindmap-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mindmap-example-img {
    max-width: 100%;
}

  .example-mind-map-canvas {
    width: 100%;
    max-width: 900px;
    height: 380px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }

 
  #mindmap {
    display: block;
    width: 140%;
    height: 380px;
    transform-origin: 0 0; 
    position: absolute;    
    left: 0;
    top: 0;
    transition: transform 160ms linear;
    pointer-events: auto;
  }

#mindmap, .markmap-node {
    font-family: 350 16px/20px BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif !important;
    font-weight: 350;
}

#mindmap > g > g > line {
  stroke-linecap: round;
}

.markmap-dark .markmap {
    --markmap-code-bg: #ddd !important;
    --markmap-code-color: var(--text-color) !important;
    --markmap-circle-open-bg: #fff !important;
    --markmap-text-color: var(--text-color) !important;
}

.example-mind-map-canvas>svg.move-icon {
    position: absolute;
    left: 3px;
    bottom: 3px;
    width: 24px;
    height: 24px;
    margin: 8px;
    opacity: 0.5;
}

.mm-toolbar {
    display: none;
}

.make-mindmap-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.make-mindmap-button:hover {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
}

@media (max-width: 768px) {
    .what-is-mindmap-container {
        flex-direction: column;
    }
}

a {
    text-underline-offset: 2px;
    text-decoration: underline;
}


.social-proof-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px auto;
  flex-wrap: wrap;
}

.award-summary {
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 70px;
  width: 250px;
}

.award-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award-text {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
  position: relative;
  padding: 0 30px;
}

.award-text::before,
.award-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  border-radius: 20px;
  background-color: #ddd;
}

.award-text::before {
  left: 0;
}

.award-text::after {
  right: 0;
}

.award-source {
  font-size: 1rem;
  color: #64758B;
}

.pricing-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 60px 20px 70px 20px;
    }

.section-title {
    margin-bottom: 50px;
    margin-top: 10px;
    color: var(--text-color);
    font-size: 2.5rem;
    font-family: "SF Pro Display", 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

        .pricing-cards-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            padding: 0 20px;
            width: 100%;
            max-width: 1200px;
        }

        .pack-container:nth-child(2) {
            border: 3px solid #f03434;
            transform: scale(1.05);
            height: 550px;
        }

        .pack-container:nth-child(2) .button-container a {
            background-color: var(--text-color);
            color: #fff;
        }

        .pack-container:nth-child(2) .button-container a:hover {
            background-color: transparent;
            color: var(--text-color);
        }

        .pack-container {
            position: relative;
            display: flex;
            flex-direction: column;
            border-radius: 20px;
            background-color: #ffffff;

            padding: 1.6rem 1.6rem 1rem 1.6rem;
            color: var(--text-color);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            flex: 1;
            min-width: 250px;
            max-width: 320px;
        }

        .pack-content {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .pricing-header {
            position: relative;
            margin: 0;
            overflow: hidden;
            border-radius: 0;
            background: transparent;
            text-align: left;
            margin-bottom: 20px;
        }

        .title {
            display: block;
            font-size: 1.3rem;
            line-height: 1.25rem;
            color: var(--text-color);
            font-weight: 600;
            margin-top: 0px;
        }
        
        .recommended-badge {
            background-color: #f03434; 
            border-radius: 40px;
            padding: 3px 14px 3px 3px;
            color: #fff;
            font-weight: 500;
            width: fit-content;
            margin: -42px auto 0;
            display: block;
            text-align: center;
        }

        .recommended-badge span {
            background-color: #fff;
            border-radius: 40px;
            height: 100%;
            padding: 3.5px 5px;
            color: var(--text-color);
            margin-right: 5px;
        }

        .billing-info {
            font-size: 1rem !important;
            color: #888 !important;
            font-weight: 400 !important;
            margin-top: 0px !important;
        }

        .price-container p {
            margin-top: 10px;
            margin-bottom: 10px;
            display: flex;
            gap: 4px;
            font-size: 2.7em;
            font-weight: 700;
            line-height: 1;
            color: var(--primary-color);
            font-family: "SF Pro Display", 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }


        .price-container {
            margin: 1rem 0;
        }

        .price-container p {
            margin: 0;
            line-height: 1.4;
        }

        .original-price {
            color: #989898;
            font-size: 0.6em;
            position: relative;
            display: inline-block;
            font-weight: 400;
            font-family: "SF Pro Rounded", 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .original-price::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 1px;
            right: -2px;
            height: 2px;
            background-color: #f03434;
            border-radius: 5px;
            transform: translateY(-20%);
            transform-origin: center;
        }

        .discounted-price {
            color: #1E293B;
            font-weight: 600;
            font-size: 1.1em;
        }

        .pricing-stacked .original-price {
            display: block;
            margin-bottom: 2px;
        }

        .pack-features {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .lists {
            display: flex;
            flex-direction: column;
            gap: 0px;
            padding: 0px;
            list-style: none;
        }

        .list {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
        }

        .list p {
            display: block;
            margin: 5px 0px;
            font-size: 1rem;
            font-family: "SF Pro Text", 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 400;
        }

        .button-container {
            margin-top: auto;
            padding-top: 20px;
        }

        .button-container a {
            display: block;
            width: calc(100%-3.2rem);
            text-align: center;
            text-decoration: none;
            background-color: transparent;
            border: 2px solid var(--text-color);
            padding: 9px 20px;
            font-size: 1.1rem;
            font-weight: 400;
            color: var(--text-color);
            outline: 0;
            border-radius: 30px;
            transition: 0.3s all ease;
        }

        .button-container a:hover {
            background-color: var(--text-color);
            color: white;
            border-radius: 40px;
        }

        @media (max-width: 1100px) and (min-width: 769px) {
            .pricing-cards-wrapper {
                flex-direction: column;
                gap: 30px;
                align-items: center;
            }

            .pack-container {
                max-width: 80%;
                min-width: 70%;
                padding: 2rem;
            }

            .pack-content {
                flex-direction: row;
                align-items: flex-start;
                gap: 30px;
                justify-content: space-between;
            }

            .pricing-header {
                flex: 0 0 200px;
                margin-bottom: 0;
            }

            .pack-features {
                flex: 0 0 auto;
                margin-left: 50px;
                width: 25vw;
            }

            .lists {
                flex-direction: column;
                gap: 0px;
            }

            .list {
                flex: none;
            }

            .button-container {
                margin-top: 20px;
                padding-top: 0;
            }

            .button-container a {
                max-width: 200px;
            }

            .recommended-badge {
                margin-top: -48px;
            }
        }

        @media (max-width: 768px) {
            .pricing-cards-wrapper {
                flex-direction: column;
                gap: 20px;
                padding: 0 10px;
                align-items: center;
            }

            .pack-container {
                width: 80%;
                min-width: 300px;
                margin-bottom: 20px;
                padding-bottom: 1.6rem !important;

            }
            .pack-content {
                flex-direction: column;
            }

            .pricing-header {
                margin-bottom: 20px;
            }

            .section-title {
                font-size: 2rem;
            }

            .lists {
                flex-direction: column;
                gap: 0px;
            }

            .list {
                flex: none;
            }
        }

        @media (max-width: 880px) {
            .pricing-section {
                padding: 10px 10px 40px 10px;
            }

            .pack-container {
                padding: 1.2rem;
                padding-bottom: 1.2rem !important;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .price-container p {
                font-size: 2.2em;
            }

            .recommended-badge {
                margin-top: -36px;
            }
        }

        .api-info {
            margin-top: 40px;
            font-weight: 400;
            font-size: 1rem;
        }

        .api-info a {
            text-decoration: none;
            color: var(--primary-color);
        }

        .api-info:hover a svg, .header-badge:hover a svg {
            animation: jello-vertical 0.9s both;
            transform-origin: left;
        }

            @keyframes jello-vertical {
                0% {
                    transform: scale3d(1, 1, 1);
                }
                30% {
                    transform: scale3d(0.75, 1.25, 1);
                }
                40% {
                    transform: scale3d(1.25, 0.75, 1);
                }
                50% {
                    transform: scale3d(0.85, 1.15, 1);
                }
                65% {
                    transform: scale3d(1.05, 0.95, 1);
                }
                75% {
                    transform: scale3d(0.95, 1.05, 1);
                }
                100% {
                    transform: scale3d(1, 1, 1);
                }
            }


            .cl-pricingTableCardFooterButton {
                transform: translateY(30px) !important;
            }

            .onboarding-popup-overlay {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.32);
                z-index: 6200;
                display: none;
            }
            .onboarding-popup {
                position: relative;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
                padding: 30px 30px 25px 30px;
                border-radius: 24px;
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
                z-index: 4201;
                width: 100%;
                max-width: 550px;
                text-align: left;
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.2);
                animation: popupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
                height: fit-content;
            }
            .onboarding-popup-close {
                position: absolute;
                top: 20px;
                right: 20px;
                height: 38px;
                width: 38px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: transparent;
                border: none;
                cursor: pointer;
                padding: 5px;
                border-radius: 50%;
                transition: all 0.3s ease;
            }
            .onboarding-popup-close:hover {
                background-color: rgba(0, 0, 0, 0.04);
            }
            @keyframes popupSlideIn {
                from {
                    opacity: 0;
                    transform: translate(-50%, -60%) scale(0.9);
                }
                to {
                    opacity: 1;
                    transform: translate(-50%, -50%) scale(1);
                }
            }
            .onboarding-popup-title {
                color: #1e293b;
                margin-top: 0;
                margin-bottom: 20px;
                font-family: "SF Pro Display", 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
                line-height: 1.3;
                font-size: 1.5em;
                font-weight: 700;
                color: var(--text-color);
                background-clip: text;
            }
            .onboarding-popup-content {
                display: flex;
                justify-content: flex-end;
            }

            .onboarding-popup-button {
                font-family: "SF Pro Text", 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
                background-color: var(--primary-color);
                padding: 8px 25px;
                font-size: 1rem;
                border-radius: 40px;
                color: #fff;
                border: 2px solid var(--primary-color);
                transition: all 0.3s ease;
                text-decoration: none !important;
                margin-top: 0px;
                margin-left: auto;
                display: block;
            }
            .onboarding-popup-button svg {
                position: relative;
                top: 3.5px;
                margin-left: 3px;
            }
            .onboarding-popup-button:hover {
                background-color: transparent;
                color: var(--text-color);
            }
            .confetti-container {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                pointer-events: none;
                z-index: 3200;
                overflow: hidden;
            }
            .confetti {
                position: absolute;
                width: 10px;
                height: 10px;
                background: #ff6b6b;
                animation: confetti-fall linear forwards;
                --rotations: 4;
            }
            
            @keyframes confetti-fall {
                0% {
                    transform: translateY(-10vh) rotate(calc(var(--rotations) * 0.1turn));
                    opacity: 1;
                }
                        
                100% {
                    transform: translateY(110vh) rotate(calc(var(--rotations) * 1turn));
                    opacity: 0;
                    }                    
            }

                      .email-updates-loader {
                            display: inline-block;           
                            transform-origin: 50% 50%;     
                            animation: spinloader 1s linear infinite;
                        }

                        @keyframes spinloader {
                            from { transform: rotate(0deg); }
                            to   { transform: rotate(360deg); }
                        }
