/* AEM Labs - Start Selling CSS */
/* ============================ */


/* --- Hero Section Start --- */
.hero-container {
    padding: 50px 0 0;
    width: 100%;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-section {
    max-width: min(85%, var(--section-max-width));
    width: 100%;
    margin: 0 auto;
    background-color: #1d1d1d;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 35vh;
    transition: max-width 0.4s ease-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.hero-video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-control {
    position: absolute;
    top: 5%;
    right: 1.2%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    border: none;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.3;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    z-index: 15;
    padding: 0;
}

.video-control i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.video-control:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-video-wrapper:hover .video-control {
    opacity: 0.7;
}

.video-control:focus {
    outline: none;
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6% 5%;
    z-index: 5;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    max-width: 90%;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 85%;
}

.hero-description {
    font-size: 16px;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 60%;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background: linear-gradient(270deg, #a71c1c, #6907c5, #a71c1c, #6907c5);
    background-size: 300% 100%;
    background-position: 0% 0%;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-position: 100% 0%;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-msg-bar {
    max-width: min(80%, var(--section-max-width));
    width: 100%;
    margin: -1.4% auto 0;
    background-color: white;
    border-radius: 16px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: max-width 0.4s ease-out;
    z-index: 10;
    flex-wrap: wrap;
    gap: 8px;
}

.info-message {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.info-message i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 16px;
}

@media (max-width: 1400px) {
    .hero-section {
        max-width: min(85%, var(--section-max-width));
        height: 40vh;
    }

    .hero-title {
        font-size: 30px;
        max-width: 100%;
    }

    .hero-subtitle,
    .hero-description {
        font-size: 16px;
    }

    .hero-description {
        max-width: 85%;
    }

    .hero-msg-bar {
        max-width: min(75%, var(--section-max-width));
        padding: 12px 25px;
    }

    .info-message {
        font-size: 13px;
    }

    .info-message i {
        font-size: 16px;
    }

    .hero-cta {
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        max-width: min(90%, var(--section-max-width));
        height: 28vh;
    }

    .hero-title {
        font-size: 24px;
        font-weight: 600;
    }

    .hero-subtitle {
        font-weight: 600;
    }

    .hero-description {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-cta {
        gap: 10px;
    }

    .hero-msg-bar {
        max-width: min(75%, var(--section-max-width));
        padding: 12px 16px;
        border-radius: 12px;
        margin: -2.5% auto 0;
    }

    .info-message {
        font-size: 11px;
        font-weight: 600;
    }

    .info-message i {
        font-size: 13px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 13px;
        padding: 8px 16px;
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 20px 0;
    }

    .hero-section {
        max-width: min(90%, var(--section-max-width));
        height: 28vh;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 0 10px;
    }

    .hero-section {
        max-width: min(95%, var(--section-max-width));
        height: 25vh;
    }

    .hero-title {
        font-size: 22px;
        font-weight: 800;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 12px;
        max-width: 100%;
    }

    .hero-description {
        font-size: 10px;
        margin-bottom: 10px;
        display: none;
    }

    .hero-cta {
        font-size: 10px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 10px;
        padding: 6px 12px;
        border-radius: 10px;
    }

    .info-message span {
        display: none;
    }

    .hero-msg-bar {
        display: none;
    }

    .video-control {
        width: 24px;
        height: 24px;
        top: 4%;
        right: 2%;
    }

    .video-control i {
        font-size: 9px;
    }
}

/* --- Hero Section End --- */


/* --- Why Sell Section Start --- */
.why-sell-section {
    padding: 30px 0;
}

.why-sell-container {
    max-width: min(75%, var(--max-container-width));
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 24px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent-color), #6907c5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 18px;
    color: white;
}

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

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.benefit-card p {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    border-bottom: 1px solid #c7c6c6;
    padding-bottom: 8px;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card li {
    font-size: 14px;
    color: #696969;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.benefit-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

@media (max-width: 1400px) {
    .why-sell-section {
        padding: 20px 0;
    }

    .why-sell-container {
        max-width: min(90%, var(--max-container-width));
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
        margin-top: 20px;
        gap: 20px;
    }

    .benefit-card {
        padding: 18px 22px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .benefit-icon i {
        font-size: 16px;
    }

    .benefit-card h3 {
        font-size: 18px;
    }

    .benefit-card p {
        font-size: 13px;
    }

    .benefit-card ul li:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .why-sell-section {
        padding: 15px 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        margin-top: 20px;
        gap: 12px;
    }

    .benefit-card {
        padding: 15px 20px;
    }

    .benefit-header {
        gap: 10px;
    }

    .benefit-card h3 {
        font-size: 16px;
    }

    .benefit-card p,
    .benefit-card ul li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .why-sell-section {
        padding: 10px 0;
    }

    .benefits-grid {
        margin-top: 12px;
    }

    .benefit-card {
        padding: 12px 16px;
    }

    .benefit-header {
        margin-bottom: 8px;
    }

    .benefit-card h3 {
        font-size: 14px;
    }

    .benefit-card p,
    .benefit-card ul li {
        font-size: 12px;
    }

    .benefit-card p {
        padding-bottom: 6px;
    }

    .benefit-card ul li {
        margin-bottom: 6px;
    }
}

/* --- Why Sell Section End --- */


/* --- How It Works Section Start --- */
.how-it-works-section {
    padding: 30px 0;
}

.how-it-works-section .section-header h2::after {
    width: 10%;
}

.how-it-works-container {
    max-width: min(70%, var(--max-container-width));
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.step-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.step-card:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #6907c5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(167, 28, 28, 0.3);
}

.step-content {
    padding: 22px 80px 18px 30px;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.step-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.step-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.step-link:hover {
    color: #6907c5;
}

.step-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 1400px) {
    .how-it-works-section {
        padding: 20px 0;
    }

    .how-it-works-container {
        max-width: min(80%, var(--max-container-width));
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
        top: 15px;
        right: 15px;
    }

    .step-content p {
        margin-bottom: 12px;
    }
}

@media (max-width: 992px) {
    .how-it-works-container {
        max-width: min(90%, var(--max-container-width));
    }

    .steps-container {
        gap: 20px;
    }

    .step-content {
        padding: 18px 24px;
    }

    .step-content p {
        width: 90%;
    }

    .step-link {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .step-content h3 {
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .how-it-works-section {
        padding: 10px 0;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .steps-container {
        gap: 12px;
        margin-top: 12px;
    }

    .step-content {
        padding: 15px 20px;
    }

    .step-content h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .step-content p {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .step-link {
        font-size: 11px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
        top: 10px;
        right: 10px;
    }
}

/* --- How It Works Section End --- */


/* --- What to Sell Section Start --- */
.what-to-sell-section {
    padding: 30px 0;
}

.what-to-sell-container {
    max-width: min(90%, var(--max-container-width));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.what-to-sell-section .section-header h2::after {
    width: 20%;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.category-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.category-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent-color), #6907c5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 18px;
    color: white;
}

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

.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
    position: relative;
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: var(--accent-color);
}

.category-card h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), #6907c5);
    border-radius: 1px;
    transition: transform 0.3s ease;
}

.category-card:hover h3::after {
    transform: translateX(-50%) scaleX(1);
}

.category-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-left: 2%;
}

.category-card li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.category-card:hover li {
    color: #555;
    transform: translateX(3px);
}

.category-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: bold;
    transition: all 0.3s ease;
}

.category-card:hover li::before {
    color: #6907c5;
}

@media (max-width: 1400px) {
    .what-to-sell-container {
        padding: 20px 0;
        max-width: min(95%, var(--section-max-width));
    }

    .categories-grid {
        margin-top: 12px;
    }

    .category-card {
        padding: 16px;
    }

    .category-header {
        gap: 12px;
        margin-bottom: 12px;
    }

    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .category-card h3 {
        font-size: 18px;
    }

    .category-card ul {
        margin-left: 0;
    }

    .category-card ul li:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 992px) {
    .what-to-sell-section {
        padding: 20px 0 40px;
    }

    .what-to-sell-container {
        max-width: min(85%, var(--section-max-width));
        padding: 0;
    }

    .category-card {
        padding: 12px 16px;
    }
}

@media (max-width: 768px) {
    .what-to-sell-container {
        max-width: min(90%, var(--section-max-width));
    }
}

@media (max-width: 480px) {
    .what-to-sell-section {
        padding: 10px 0 20px;
    }

    .category-header {
        gap: 10px;
        margin-bottom: 8px;
    }

    .category-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        border-radius: 10px;
    }

    .category-card h3 {
        font-size: 14px;
    }

    .category-card ul li {
        font-size: 12px;
    }    
}

/* --- What to Sell Section End --- */


/* --- Get Started Section Start --- */
.get-started-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.get-started-container {
    max-width: min(90%, var(--max-container-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.get-started-content .section-label {
    background: linear-gradient(270deg, #a71c1c, #6907c5);
}

.get-started-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 10;
}

.get-started-content h2::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 30%;
    height: 8px;
    background: linear-gradient(270deg, #a71c1c, #6907c5);
    opacity: 0.75;
    box-shadow: 0 0 12px rgba(0, 0, 0, 1);
    border-radius: 3px;
    z-index: -1;
}

.get-started-content>p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ccc;
}

.signup-form {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.signup-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(270deg, #a71c1c, #6907c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#get-started.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

#get-started .input-group.full-width {
    grid-column: 1 / -1;
}

#get-started .input-group label {
    font-size: 14px;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 6px;
}

#get-started .input-group input,
#get-started .input-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: border-color 0.3s ease;
    color: white;
    font-size: 14px;
}

#get-started .input-group input:focus,
#get-started .input-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

#get-started .input-group select option {
    background: #1a1a1a;
    color: white;
}

#get-started .input-group option:hover {
    background-color: var(--accent-color) !important;
}


#get-started .checkbox-group {
    margin: 0 0 6px;
}

#get-started .checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #ccc;
    gap: 4px;
}

#get-started .checkbox-container input {
    width: auto;
    margin-right: 8px;
    opacity: 1;
    position: relative;
}

#get-started .checkmark {
    display: none;
}

.terms-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}

.signup-btn {
    width: 100%;
    background: linear-gradient(270deg, #a71c1c, #6907c5, #a71c1c, #6907c5);
    background-size: 300% 100%;
    background-position: 0% 0%;
    color: white;
    border: none;
    border-radius: 16px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease, background-position 0.6s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 20px auto 0;
}

.signup-btn:hover {
    background-position: 100% 0%;
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 12px !important;
    font-weight: 500;
    color: #999;
    margin: 16px 0 0 0 !important;
}

/* Info Card Styles (for non-logged-in users) */
.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    color: white;
}

.info-card-content {
    position: relative;
    z-index: 2;
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #a71c1c, #6907c5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(167, 28, 28, 0.3);
}

.info-icon i {
    font-size: 32px;
    color: white;
}

.info-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(270deg, #a71c1c, #6907c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
    width: 85%;
}

.info-benefits {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.benefit-item i {
    background: linear-gradient(135deg, #a71c1c, #6907c5);
    box-shadow: 0 4px 12px rgba(105, 7, 197, 0.5);
    border-radius: 50%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 16px;
    flex-shrink: 0;
}

.create-account-btn {
    background: linear-gradient(135deg, #a71c1c, #6907c5);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(167, 28, 28, 0.3);
}

.create-account-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 28, 28, 0.4);
    filter: brightness(1.1);
}

.create-account-btn i {
    font-size: 14px;
}

.info-note {
    font-size: 14px;
    color: #666;
    margin: 0 auto !important;
}

.info-note a {
    color: #a71c1c;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-note a:hover {
    text-decoration: underline;
    color: #6907c5;
}

.get-started-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 30px;
    margin: auto 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.stat-icon {
    position: absolute;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a71c1c, #6907c5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(167, 28, 28, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.stat-icon i {
    font-size: 20px;
    color: white;
}

.stat-card:hover .stat-icon {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 18px rgba(167, 28, 28, 0.4);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(167, 28, 28, 0.3);
}

.stat-card .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(270deg, #a71c1c, #6907c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.stat-card .stat-label {
    font-size: 13px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

@media (max-width: 1400px) {
    .get-started-content h2 {
        font-size: 30px;
    }

    .get-started-container {
        max-width: min(90%, var(--max-container-width));
        grid-template-columns: 2fr 0.85fr;
        gap: 30px;
    }

    /* Signed Out User Session */
    .info-card {
        padding: 20px;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .info-icon i {  
        font-size: 24px;
    }

    .info-card h3 {
        font-size: 24px;
    }

    .info-card p {
        margin-left: auto;
        margin-right: auto;
    }

    .info-benefits {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .benefit-item {
        font-size: 13px;
    }

    .signup-btn,
    .create-account-btn {
        padding: 14px 24px;
        font-size: 14px;
        margin-bottom: 12px;
    }

    .signup-btn i,
    .create-account-btn i {
        font-size: 12px;
    }

    .info-note {
        font-size: 12px !important;
    }
    
    /* Signed In User Session */
    .signup-form {
        padding: 16px 24px;
    }

    .signup-form h3 {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 16px;
    }
    
    .signup-form label {
        font-size: 13px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-card .stat-number {
        font-size: 24px;
    }

    .stat-card .stat-label {
        font-size: 12px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
    }

    .stat-icon i {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .get-started-container {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: min(85%, var(--max-container-width));
    }

    .get-started-stats {
        order: 1;
        padding-left: 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .get-started-content h2 {
        font-size: 28px;
    }

    .get-started-content h2::after {
        width: 25%;
    }

    /* Signed In User Session */
    .signup-form {
        padding: 22px;
    }

    .signup-form h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .form-row {
        gap: 15px;
    }

    #get-started .input-group {
        margin-bottom: 14px;
    }

    .stat-card {
        padding: 18px;
    }

    .stat-icon {
        left: -3%;
        width: 42px;
        height: 42px;
    }

    .stat-icon i {
        font-size: 16px;
    }

    .stat-card .stat-number {
        font-size: 22px;
    }

    .checkbox-container,
    .terms-link {
        font-size: 13px !important;
    }

    .signup-btn {
        padding: 14px 24px;
        font-size: 14px;
        max-width: fit-content;
    }
}

@media (max-width: 768px) {
    .get-started-container {
        max-width: min(90%, var(--max-container-width));
        gap: 25px;
    }

    .get-started-stats {
        gap: 12px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .get-started-content h2 {
        font-size: 26px;
    }

    .get-started-content > p {
        font-size: 15px;
    }

    .signup-form {
        padding: 20px;
    }

    .form-row {
        gap: 12px;
    }

    .get-started-stats {
        gap: 24px;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-icon {
        left: -6%;
        width: 40px;
        height: 40px;
    }

    .stat-icon i {
        font-size: 15px;
    }

    .stat-card .stat-number {
        font-size: 20px;
    }

    .stat-card .stat-label {
        font-size: 11px;
    }

    /* Signed Out User Session */
    .info-icon {
        width: 50px;
        height: 50px;
    }

    .info-icon i {
        font-size: 20px;
    }

    .info-benefits {
        gap: 10px;
        max-width: 100%;
    }

    .info-card h3 {
        font-size: 24px;
    }

    .info-card p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .create-account-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .get-started-section {
        padding: 10px 0;
    }

    .get-started-container {
        max-width: min(90%, var(--max-container-width));
        padding: 20px 0;
        gap: 20px;
    }

    .get-started-content h2 {
        font-size: 24px;
    }

    .get-started-content > p {
        font-size: 13px;
    }

    /* Signed In User Session */
    .signup-form {
        padding: 18px;
    }

    .signup-form h3 {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .form-row {
        gap: 10px;
    }

    #get-started .input-group {
        margin-bottom: 12px;
    }

    #get-started .input-group label {
        font-size: 10px;
        margin-bottom: 4px;
    }

    #get-started .input-group input,
    #get-started .input-group select {
        padding: 8px 12px;
        font-size: 13px;
    }

    #get-started .input-group input::placeholder,
    #get-started .input-group select {
        font-size: 10px;
    }

    #get-started .checkbox-container {
        margin: 6px;
    }

    #get-started .checkbox-container,
    #get-started .terms-link {
        font-size: 10px !important;
    }

    .signup-btn {
        padding: 12px 20px;
        font-size: 13px;
        max-width: 200px;
        margin: 15px auto 0;
        border-radius: 12px;
    }

    .form-note {
        font-size: 10px !important;
        margin: 12px 0 0 0 !important;
    }

    /* Signed Out User Session */
    .info-card {
        padding: 16px 20px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .info-icon i {
        font-size: 18px;
    }

    .info-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .info-card p {
        font-size: 11px;
        margin-bottom: 12px;
        width: 100%;
    }

    .benefit-item {
        font-size: 10px;
        gap: 6px;
    }

    .benefit-item i {
        font-size: 14px;
    }

    .signup-btn,
    .create-account-btn {
        padding: 10px 20px;
        font-size: 12px;
        margin-bottom: 10px;
        border-radius: 12px;
        max-width: fit-content;
    }

    .info-note {
        font-size: 12px;
    }

    .terms-link {
        font-size: 12px;
    }

    .get-started-stats {
        gap: 10px 24px;
        width: 100%;
    }

    .stat-card {
        padding: 8px 10px;
        border-radius: 12px;
    }

    .stat-icon {
        left: -10%;
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .stat-icon i {
        font-size: 12px;
    }

    .stat-card .stat-number {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .stat-card .stat-label {
        font-size: 8px;
        width: 70%;
        margin: 0 auto;
    }
}

/* --- Get Started Section End --- */


/* --- Success Stories Section Start --- */
.success-stories-section {
    padding: 30px 0;
}

.success-stories-container {
    max-width: min(75%, var(--max-container-width));
    margin: 0 auto;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Hide carousel elements on larger screens, show grid items */
.stories-carousel {
    display: none;
}

.story-grid-item {
    display: block;
}

.story-card {
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.story-stats {
    margin-bottom: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.story-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.story-metrics {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: #555;
}

.story-metrics i {
    color: #ffc107;
    margin-right: 4px;
}

@media (max-width: 1400px) {
    .success-stories-container {
        max-width: min(85%, var(--max-container-width));
    }

    .stories-grid {
        margin-top: 20px;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .story-card {
        padding: 16px 20px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .story-content h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .story-content p {
        font-size: 12px;
    }  
}

@media (max-width: 992px) {
    .stories-grid {
        display: block;
    }

    .story-grid-item {
        display: none;
    }

    .stories-carousel {
        display: block;
        position: relative;
        overflow: hidden;
        width: 100%;
        mask: linear-gradient(90deg, transparent 0%, white 10%, white 90%, transparent 100%);
        -webkit-mask: linear-gradient(90deg, transparent 0%, white 10%, white 90%, transparent 100%);
    }

    .stories-track {
        display: flex;
        align-items: stretch;
        animation: scroll-stories 25s linear infinite;
        width: calc(350px * 6); /* 3 stories * 2 (for loop) * 350px width */
        gap: 20px;
    }

    .stories-track .story-card {
        flex: 0 0 350px;
        margin-bottom: 0;
        box-shadow: none;
    }

    @keyframes scroll-stories {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-350px * 3 - 60px)); /* Move by width of 3 stories + gaps */
        }
    }

    .stories-carousel:hover .stories-track {
        animation-play-state: paused;
    }
}

@media (max-width: 768px) {
    .success-stories-section {
        padding: 15px 0;
    }

    .success-stories-container {
        max-width: min(90%, var(--max-container-width));
    }

    .stories-grid {
        margin-top: 20px;
    }

    .story-card {
        padding: 15px 20px;
    }

    .story-grid-item {
        display: none;
    }

    .stories-carousel {
        display: block;
    }

    .stories-track {
        width: calc(300px * 6);
        animation: scroll-stories-tablet 16s linear infinite;
        gap: 15px;
    }

    .stories-track .story-card {
        flex: 0 0 300px;
    }

    @keyframes scroll-stories-tablet {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 3 - 45px));
        }
    }
}

@media (max-width: 480px) {
    .success-stories-section {
        padding: 10px 0;
    }

    .success-stories-container {
        max-width: min(95%, var(--max-container-width));
    }

    .story-card {
        padding: 12px 16px;
    }

    .story-content h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .story-content p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .story-metrics {
        font-size: 11px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 10px;
    }

    .story-grid-item {
        display: none;
    }

    .stories-carousel {
        display: block;
    }

    .stories-track {
        width: calc(280px * 6);
        animation: scroll-stories-mobile 12s linear infinite;
        gap: 12px;
    }

    .stories-track .story-card {
        flex: 0 0 280px;
    }

    @keyframes scroll-stories-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 3 - 36px));
        }
    }
}

/* --- Success Stories Section End --- */


/* --- FAQ Section Start --- */
.faq-section {
    padding: 30px 0;
}

.faq-container {
    max-width: min(90%, var(--max-container-width));
    margin: 0 auto;
}

.faq-grid {
    max-width: 800px;
    margin: 20px auto 0;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
    position: relative;
    padding-left: 60px;
}

.faq-icon {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a71c1c, #6907c5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(167, 28, 28, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.faq-icon i {
    font-size: 20px;
    color: white;
}

.faq-item:hover .faq-icon {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 18px rgba(167, 28, 28, 0.4);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-question:hover h4 {
    color: var(--accent-color);
}

.faq-question i {
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}

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

.faq-answer p {
    padding: 0 0 24px 0;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

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

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-color);
}

@media (max-width: 1400px) {
    .faq-section {
        padding-top: 0;
    }
}

@media (max-width: 992px) {
    .faq-grid {
        max-width: min(85%, var(--max-container-width));
    }
}

@media (max-width: 480px) {
    .faq-grid {
        margin-top: 0;
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
    }

    .faq-icon i {
        font-size: 16px;
    }

    .faq-item {
        padding-left: 35px;
    }

    .faq-item h4,
    .faq-question i {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 12px;
    }
}

/* --- FAQ Section End --- */
