/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e1e1e;
    background-color: #ffffff;
    line-height: 1.4;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 96px;
}

h1, h2, h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(to top, #259dd5, #66bae2);
    min-height: 704px;
    padding: 96px 96px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    align-items: center;
    width: 100%;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 1;
}

.hero-logo {
    width: 322px;
    height: 81px;
    object-fit: contain;
}

.hero-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.4;
    color: white;
}

.hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: white;
}

.hero-expandable {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.hero-expandable-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: white;
    flex: 1;
}

.btn-hero-cta {
    background: linear-gradient(to top, #259dd5, #66bae2);
    border: none;
    color: white;
    padding: 12px 8px 12px 32px;
    border-radius: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
}


.btn-hero-cta:hover {
    background: #fff;box-shadow: 0px 0px 24px 0px #00000029;color: #0093D8;
}

.btn-hero-cta:after{content:'';width: 24px;height: 24px;display: inline-block;background: url(../img/button_circle_arrow.svg) no-repeat 50% 50% / contain;padding-left: 16px}
.btn-hero-cta:hover:after{background: url(../img/button_circle_arrow_blue.svg) no-repeat 50% 50% / contain}

.btn-hero-cta-white{background: #fff;color: #0093D8}
.btn-hero-cta-white:after{background: url(../img/button_circle_arrow_blue.svg) no-repeat 50% 50% / contain}

.btn-icon {
    font-size: 24px;
}

.hero-image-slider {
    position: relative;
    width: 478px;
    height: 528px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dot.active {
    background: white;
}

/* Highlight Section */
.highlight-section {
    padding: 40px 96px;
}

.highlight-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.tags {
    display: flex;
    gap: 8px;
}

.tag {
    padding: 8px 16px;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    border: 1px solid;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
}

.tag-spotlight {
    background: #eba97c;
    border-color: #f3792a;
}

.tag-belief {
    background: #75c188;
    border-color: #3aa756;
}

.section-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    color: #0093d8;
}

.highlight-title {
    color: #3aa756;
}

.highlight-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
    margin-bottom: 24px;
}

.highlight-cards {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.highlight-card {
    flex: 1;
    background: linear-gradient(to bottom, #75c188, #3aa756);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-horizontal {
    flex-direction: row;
    align-items: center;
}

.card-badge {
    background: #eba97c;
    border: 1px solid #f3792a;
    padding: 8px 16px;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
    width: fit-content;
}

.card-badge-offer {
    background: #f1cf77;
    border-color: #ebbb3d;
}

.card-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: white;
}

.card-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: white;
}

.btn-card {
    background: linear-gradient(to top, #ededed, #ffffff 69.609%);
    border: none;
    padding: 10px 36px;
    border-radius: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #3aa756;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.2s;
}

.btn-card:hover {
    opacity: 0.9;
}

.card-meta {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: white;
    text-align: center;
}

.newsletter-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding: 24px;
    border-radius: 16px;
    margin-top: 24px;
}

.newsletter-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #3aa756;
    text-align: center;
}

.newsletter-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
    text-align: center;
}

.btn-newsletter {
    background: linear-gradient(to bottom, #75c188, #3aa756);
    border: none;
    padding: 10px 36px;
    border-radius: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    cursor: pointer;
}

.btn-newsletter:hover {
    opacity: 0.9;
}

/* Used By Section */
.used-by-section {
    padding: 40px 96px;
}

.used-by-section .section-title {
    text-align: center;
    margin-bottom: 24px;
}

.logos-container {
    display: flex;
    gap: 40px;
    align-items: center;
    overflow-x: auto;
    padding: 20px 0;
}

.client-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* Stats Section */
.stats-section {
    position: relative;
    padding: 56px 96px;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    inset: 0;
    opacity: 0.7;
    overflow: hidden;
}

.stats-bg-image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.stats-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

.stats-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    color: #0093d8;
    text-align: center;
}

.stats-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1;
    color: #1e1e1e;
    text-align: center;
}

.stats-grid {
    background: rgba(255, 255, 255, 0.44);
    backdrop-filter: blur(14px);
    mix-blend-mode: overlay;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 0px 11.9px rgba(255, 255, 255, 0.5);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 156px;
}

.stat-number {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 36px;
    background: linear-gradient(to top, #f3792a, #eba97c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #0093d8;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: url('../img/stat-divider.png') center/contain no-repeat;
}

.stats-icon {
    width: 50px;
    height: 25px;
}

.stats-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Case Studies Section */
.case-studies-section {
    position: relative;
    padding: 40px 96px;
}

.case-studies-bg {
    position: absolute;
    inset: 0;
    opacity: 0.82;
}

.case-studies-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-studies-container {
    position: relative;
    z-index: 1;
    backdrop-filter: blur(36.1px);
    background: rgba(255, 255, 255, 0.01);
    padding: 40px 96px;
    border-radius: 16px;
}

.case-studies-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1;
    color: #1e1e1e;
    margin-bottom: 24px;
}

.case-studies-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.case-study-card {
    flex: 1;
    border: 4px solid white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    height: 321px;
    position: relative;
}

.case-study-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.case-study-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #0093d8;
}

.case-study-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
}

.btn-case-study {
    background: linear-gradient(to top, #259dd5, #66bae2);
    border: none;
    padding: 8px 36px;
    border-radius: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    cursor: pointer;
    width: 100%;
    text-align: center;text-decoration: none;
}

.btn-case-study:hover {
    opacity: 0.9;
}

.case-studies-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.btn-view-more {
    background: linear-gradient(to top, #259dd5, #66bae2);
    border: none;
    padding: 10px 36px;
    border-radius: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    cursor: pointer;
}

.btn-view-more:hover {
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: 40px 96px;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(36.1px);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-item:first-child {
    margin-bottom: 16px;
}

.faq-item:first-child .faq-answer {
    display: block;
}



.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #0093d8;
    text-align: left;
}

.faq-text {
    flex: 1;
}

.faq-arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .container {
        padding: 0 48px;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-image-slider {
        width: 100%;
        max-width: 478px;
    }
}

/* Tablet styles */
@media (max-width: 768px) {
    .hide_mobile{display: none}
    .container {
        padding: 0 24px;
    }

    .hero {
        padding: 60px 24px 40px;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        gap: 32px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-logo {
        width: 250px;
        height: auto;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-image-slider {
        width: 100%;
        height: 400px;
        max-width: 100%;
    }

    .highlight-section {
        padding: 40px 24px;
    }

    .highlight-cards {
        flex-direction: column;
    }

    .highlight-card {
        width: 100%;
    }

    .card-horizontal {
        flex-direction: column;
    }

    .used-by-section {
        padding: 40px 24px;
    }

    .logos-container {
        gap: 24px;
        overflow-x: auto;
        padding: 10px 0;
    }

    .client-logo {
        height: 32px;
    }

    .stats-section {
        padding: 40px 24px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .stat-item {
        width: 100%;
    }

    .stat-divider {
        display: none;
    }

    .case-studies-section {
        padding: 40px 24px;
    }

    .case-studies-container {
        padding: 24px;
    }

    .case-studies-grid {
        flex-direction: column;
    }

    .case-study-card {
        height: 280px;
    }

    .faq-section {
        padding: 40px 24px;
    }
}

/* Mobile styles */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 48px 16px 32px;
    }

    .hero-logo {
        width: 200px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-image-slider {
        height: 300px;
    }

    .hero-slider-dots {
        bottom: 12px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .highlight-section {
        padding: 32px 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .highlight-title {
        font-size: 22px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-description {
        font-size: 14px;
    }

    .btn-card, .btn-newsletter {
        padding: 8px 24px;
        font-size: 14px;
    }

    .used-by-section {
        padding: 32px 16px;
    }

    .stats-section {
        padding: 32px 16px;
    }

    .stats-title {
        font-size: 24px;
    }

    .stats-description {
        font-size: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 16px;
    }

    .case-studies-section {
        padding: 32px 16px;
    }

    .case-study-card {
        height: 250px;
    }

    .case-study-content {
        padding: 16px;
    }

    .case-study-title {
        font-size: 16px;
    }

    .case-study-description {
        font-size: 14px;
    }

    .faq-section {
        padding: 32px 16px;
    }

    .faq-question {
        padding: 16px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 16px 16px;
        font-size: 14px;
    }
}

/* Coaching Page Styles */
.hero-coaching {
    background: #ffffff;
    padding: 96px 96px 64px;
    min-height: 747px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-coaching-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-coaching-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.hero-coaching-logo {
    width: 70px;
    height: auto;
    object-fit: contain;
}

.hero-coaching-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.4;
    color: #0093d8;
    text-align: center;
}

.hero-coaching-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #1e1e1e;
    text-align: center;
    max-width: 1000px;
}

.hero-coaching-cards {
    display: flex;
    gap: 24px;
    width: 100%;
    margin-top: 24px;
}

.hero-coaching-card {
    flex: 1;
    background: linear-gradient(to top, #259dd5, #66bae2);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    min-height: 400px;
}

.hero-coaching-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
}

.hero-coaching-card-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: white;
    text-align: center;
}

.hero-coaching-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: white;
    text-align: center;
}

.btn-hero-coaching {
    background: linear-gradient(to top, #ededed, #ffffff 69.609%);
    border: none;
    padding: 10px 36px;
    border-radius: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #0093d8;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.2s;
}

.btn-hero-coaching:hover {
    opacity: 0.9;
}

.coaching-services-section,
.self-learning-section,
.accreditation-section {
    padding: 64px 96px;
}

.coaching-section-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.coaching-section-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1;
    color: #1e1e1e;
}

.coaching-services-cards {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.coaching-service-card {
    flex: 1;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.coaching-service-card .card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1;
}

.coaching-service-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #0093d8;
}

.coaching-service-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1;
    color: #1e1e1e;
}

.coaching-service-list {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
    list-style-position: inside;
    padding-left: 0;
}

.coaching-service-list li {
    margin-bottom: 8px;
    padding-left: 24px;
    list-style-type: disc;
}

.coaching-service-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-main {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #0093d8;
    margin: 0;
}

.price-secondary {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #808080;
    letter-spacing: 0.28px;
    margin: 0;
}

.btn-coaching-primary {
    background: linear-gradient(to top, #259dd5, #66bae2);
    border: none;
    padding: 10px 36px;
    border-radius: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.2s;
}

.btn-coaching-primary:hover {
    opacity: 0.9;
}

.corporate-coaching-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.corporate-coaching-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #0093d8;
}

.corporate-coaching-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
}

.self-learning-content {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.self-learning-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.self-learning-whats-included {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #0093d8;
}

.self-learning-item {
    background: white;
    border-left: 5px solid #259dd5;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.self-learning-item-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #0093d8;
}

.self-learning-item-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #1e1e1e;
    letter-spacing: 0.28px;
}

.self-learning-right {
    flex: 1;
}

.self-learning-image-card {
    background: linear-gradient(to top, #259dd5, #66bae2);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.self-learning-image-placeholder {
    width: 250px;
    height: 279px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.self-learning-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.self-learning-image-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    color: white;
}

.self-learning-image-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
}

.self-learning-image-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
}

.self-learning-image-list {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
}

.self-learning-footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding: 24px 0;
}

.self-learning-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.accreditation-cards {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.accreditation-card {
    flex: 1;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accreditation-card-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #0093d8;
}

.accreditation-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1;
    color: #1e1e1e;
}

.accreditation-card-price {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    color: #0093d8;
}

.accreditation-whats-included {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #0093d8;
}

.accreditation-list {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
    list-style-position: inside;
    padding-left: 0;
}

.accreditation-list li {
    margin-bottom: 8px;
    padding-left: 24px;
    list-style-type: disc;
}

.platform-benefits {
    background: linear-gradient(to top, #259dd5, #66bae2);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    margin-bottom: 24px;
}

.platform-benefits-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.platform-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.platform-benefit-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.platform-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
}

.platform-benefit-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: white;
}

.platform-benefit-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: white;
    letter-spacing: 0.28px;
}

.certification-process {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
}

.certification-process-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    color: #0093d8;
    text-align: center;
    margin-bottom: 8px;
}

.certification-process-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1;
    color: #1e1e1e;
    text-align: center;
    margin-bottom: 24px;
}

.certification-steps {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.certification-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.certification-step-number {
    background: linear-gradient(to top, #259dd5, #66bae2);
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: white;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    margin-bottom: 8px;
}

.certification-step-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #0093d8;
    margin: 0;
}

.certification-step-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #808080;
    letter-spacing: 0.28px;
    margin: 0;
}

.transform-section {
    padding: 96px 96px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
    position: relative;
}

.transform-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/coaching-hero-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.transform-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.transform-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    color: #0093d8;
}

.transform-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
}

.transform-buttons {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.transform-buttons .btn-coaching-primary {
    width: auto;
    min-width: 150px;
}

.directory-section {
    padding: 64px 96px;
}

.directory-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.directory-badge {
    align-self: flex-end;
}

.directory-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    color: #f3792a;
}

.directory-stats {
    display: flex;
    gap: 24px;
    width: 100%;
    justify-content: center;
}

.directory-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.directory-stat-number {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.4;
    background: linear-gradient(to top, #f3792a, #eba97c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.directory-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
    margin: 0;
}

.directory-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
}

.directory-contact {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #1e1e1e;
    letter-spacing: 0.28px;
}

.directory-link {
    color: #0093d8;
    text-decoration: underline;
}

/* Responsive styles for coaching page */
@media (max-width: 1200px) {
    .hero-coaching-cards,
    .coaching-services-cards,
    .accreditation-cards {
        flex-direction: column;
    }

    .self-learning-content {
        flex-direction: column;
    }

    .platform-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certification-steps {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-coaching {
        padding: 40px 16px;
        min-height: auto;
    }

    .hero-coaching-logo {
        width: 67px;
        height: 48px;
    }

    .hero-coaching-title {
        font-size: 24px;
    }

    .hero-coaching-subtitle {
        font-size: 17px;
    }

    .hero-coaching-cards {
        flex-direction: column;
        gap: 24px;
    }

    .hero-coaching-card {
        min-height: auto;
        padding: 16px;
    }

    .hero-coaching-card-icon {
        width: 78px;
        height: 78px;
    }

    .hero-coaching-card-title {
        font-size: 18px;
    }

    .hero-coaching-card-text {
        font-size: 14px;
    }

    .btn-hero-coaching {
        padding: 10px 24px;
    }

    .coaching-services-section,
    .self-learning-section,
    .accreditation-section,
    .directory-section {
        padding: 64px 16px;
    }

    .coaching-section-header {
        gap: 24px;
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .coaching-section-description {
        font-size: 16px;
    }

    .coaching-services-cards {
        flex-direction: column;
        gap: 24px;
    }

    .coaching-service-card {
        padding: 16px;
    }

    .coaching-service-title {
        font-size: 18px;
    }

    .coaching-service-description {
        font-size: 16px;
    }

    .coaching-service-list {
        font-size: 14px;
    }

    .coaching-service-list li {
        padding-left: 21px;
    }

    .corporate-coaching-card {
        padding: 16px;
    }

    .corporate-coaching-title {
        font-size: 18px;
    }

    .corporate-coaching-description {
        font-size: 14px;
    }

    .self-learning-content {
        flex-direction: column;
        gap: 24px;
    }

    .self-learning-left {
        order: 2;
    }

    .self-learning-right {
        order: 1;
    }

    .self-learning-whats-included {
        font-size: 18px;
    }

    .self-learning-item {
        padding: 16px;
    }

    .self-learning-item-title {
        font-size: 16px;
    }

    .self-learning-item-text {
        font-size: 12px;
        letter-spacing: 0.24px;
    }

    .self-learning-image-card {
        padding: 16px;
        min-height: auto;
    }

    .self-learning-image-placeholder {
        width: 147px;
        height: 164px;
    }

    .self-learning-image-content {
        gap: 16px;
    }

    .self-learning-image-title {
        font-size: 17px;
    }

    .self-learning-image-text {
        font-size: 14px;
    }

    .self-learning-image-list {
        font-size: 14px;
    }

    .self-learning-footer {
        padding: 24px 0;
    }

    .accreditation-cards {
        flex-direction: column;
        gap: 24px;
    }

    .accreditation-card {
        padding: 16px;
    }

    .accreditation-card-title {
        font-size: 18px;
    }

    .accreditation-card-description {
        font-size: 16px;
    }

    .accreditation-card-price {
        font-size: 28px;
    }

    .accreditation-whats-included {
        font-size: 17px;
    }

    .accreditation-list {
        font-size: 14px;
    }

    .accreditation-list li {
        padding-left: 21px;
    }

    .platform-benefits {
        padding: 40px 16px;
    }

    .platform-benefits-title {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .platform-benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .platform-benefit-title {
        font-size: 17px;
    }

    .platform-benefit-text {
        font-size: 12px;
        letter-spacing: 0.24px;
    }

    .certification-process {
        padding: 16px;
    }

    .certification-process-title {
        font-size: 22px;
    }

    .certification-process-description {
        font-size: 16px;
    }

    .certification-steps {
        flex-direction: column;
        gap: 24px;
    }

    .certification-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }

    .certification-step-number {
        width: 42px;
        height: 42px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .certification-step-title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .certification-step-text {
        font-size: 14px;
        letter-spacing: 0.28px;
    }

    .transform-section {
        padding: 96px 16px;
    }

    .transform-card {
        padding: 16px;
    }

    .transform-title {
        font-size: 22px;
    }

    .transform-description {
        font-size: 14px;
    }

    .transform-buttons {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .transform-buttons .btn-coaching-primary {
        width: 100%;
    }

    .directory-section {
        padding: 64px 16px;
    }

    .directory-card {
        padding: 16px;
        max-width: 361px;
        margin: 0 auto;
    }

    .directory-title {
        font-size: 22px;
    }

    .directory-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 24px;
    }

    .directory-stat {
        flex: 1;
    }

    .directory-stat-number {
        font-size: 24px;
    }

    .directory-stat-label {
        font-size: 12px;
        letter-spacing: 0.24px;
    }

    .directory-description {
        font-size: 14px;
    }

    .directory-contact {
        font-size: 12px;
        letter-spacing: 0.24px;
    }

    .price-main {
        font-size: 18px;
    }

    .price-secondary {
        font-size: 14px;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 24px 96px;
}

.contact-hero-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1088px;
}

.contact-hero-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    color: #0093d8;
    margin: 0;
}

.contact-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1;
    color: #1e1e1e;
    margin: 0;
}

.contact-main-section {
    padding: 0 96px 48px;
}

.contact-main-wrapper {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.contact-form-section {
    flex: 1;
    min-width: 0;
}

.contact-form-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-form-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #0093d8;
    margin: 0;
}

.contact-form-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
    margin: 0;
}

.contact-form-new {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form-field-full {
    grid-column: 1 / -1;
}

.contact-form-field label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
    margin: 0;
}

.contact-form-field label .required {
    color: #f3792a;
}

.contact-form-field input,
.contact-form-field textarea {
    background: linear-gradient(to top, #ededed, #ffffff 69.609%);
    border: none;
    padding: 8px 16px;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #808080;
    width: 100%;
    box-sizing: border-box;
    min-height: 32px;
    box-shadow: inset 0px 0px 6px 2px rgba(0, 0, 0, 0.2);
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    outline: none;
    color: #1e1e1e;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
    color: #808080;
}

.contact-form-field textarea {
    min-height: 164px;
    resize: vertical;
    padding-top: 16px;
}

.contact-input-disabled {
    background: linear-gradient(to bottom, #ccc, #979797) !important;
    color: #d9d9d9 !important;
}
.select_wrap{position: relative}
.select_wrap:after{content: '';position: absolute;right: 10px;top:50%;transform:translateY(-50%);width: 14px;height: 10px;background: url(../img/dropdown_arrow.svg) no-repeat 50% / contain}
.contact-dropdown {
    background:#259dd5;
    border: none;
    padding: 0px 40px 0px 16px;
    border-radius: 16px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    cursor: pointer;
    width: 100%;
    min-height: 32px;
    height: 35px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.contact-dropdown-inactive {
    background:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath fill='white' d='M7 8L0 0h14z'/%3E%3C/svg%3E") no-repeat right 16px center,
            #ccc !important;
}

.contact-toggle-wrapper {
    display: flex;
    align-items: center;
}

.contact-toggle {
    display: flex;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
}

.toggle-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #808080;
}

.toggle-label.active {
    color: #0093d8;
}

.toggle-switch {
    position: relative;
    width: 36px;
    height: 20px;
    background: linear-gradient(to top, #259dd5, #66bae2);
    border-radius: 16px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}

.toggle-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 2px;
    right: 2px;
    transition: all 0.3s;
}

.contact-toggle.active .toggle-switch {
    background: linear-gradient(to top, #259dd5, #66bae2);
}

.contact-toggle.active .toggle-dot {
    right: 2px;
    left: auto;
}

.contact-toggle:not(.active) .toggle-switch {
    background: #66bae2;
    box-shadow: inset 0px 0px 6px 2px rgba(0, 0, 0, 0.2);
}

.contact-toggle:not(.active) .toggle-dot {
    right: auto;
    left: 2px;
}

.contact-form-newsletter {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-checkbox-label {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.contact-checkbox {
    display: none;
}

.contact-checkbox-custom {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.contact-checkbox:checked + .contact-checkbox-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: linear-gradient(to top, #259dd5, #66bae2);
    border-radius: 16px;
}

.contact-checkbox-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
}

.contact-form-consent {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #1e1e1e;
    letter-spacing: 0.28px;
    margin: 0;
}

.contact-submit-btn {
    background: linear-gradient(to top, #259dd5, #66bae2);
    border: none;
    padding: 10px 36px;
    border-radius: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.2s;
}

.contact-submit-btn:hover {
    opacity: 0.9;
}

.contact-info-section {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
}

.contact-info-card-orange {
    background: linear-gradient(to top, #f3792a, #eba97c);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: white;
}

.contact-info-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    color: white;
    margin: 0;
}

.contact-info-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: white;
    letter-spacing: 0.28px;
    margin: 0;
}

@media (max-width: 1200px) {
    .contact-main-wrapper {
        flex-direction: column;
    }

    .contact-info-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 24px 16px;
    }

    .contact-main-section {
        padding: 0 16px 48px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-new {
        padding: 16px;
    }

    .contact-form-field {
        gap: 12px;
    }

    .contact-form-field label {
        font-size: 14px;
    }

    .contact-form-field input,
    .contact-form-field textarea {
        font-size: 14px;
        padding: 8px 12px;
    }

    .contact-dropdown {
        font-size: 14px;
        padding: 8px 12px;
        padding-right: 36px;
    }

    .contact-info-card-orange {
        padding: 16px;
    }

    .contact-info-card-title {
        font-size: 16px;
    }
}

/* Store Page Styles */
.store-hero {
    background: url("../img/store_bg.png") no-repeat 50% 50% / cover;
    padding: 96px 96px 64px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.store-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.store-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: start;
    text-align: left;
}

.store-hero-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.store-hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.4;
    color: #ffffff;
    max-width: 900px;
    margin: 0;
    text-align: center;
}

.store-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    margin: 0;
    text-align: left;
}

.store-hero-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
    width: 100%;
}

.store-hero-card {
    background: linear-gradient(to top, #259dd5, #66bae2);;
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-hero-card-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    margin: 0;
}

.store-hero-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.store-hero-card-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-decoration: underline;
    display: inline-block;
    margin-top: auto;
    text-align: right;
}

.store-hero-card-link:hover {
    opacity: 0.8;
}

.store-info-section {
    padding: 40px 96px;
    background: #f5f5f5;
}

.store-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.store-info-card {
    background: white;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.store-info-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #0093d8;
    margin-bottom: 12px;
}

.store-info-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #1e1e1e;
    margin-bottom: 12px;
}

.store-info-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0093d8;
    text-decoration: none;
    display: inline-block;
}

.store-info-link:hover {
    text-decoration: underline;
}

.store-filter-section {
    padding: 24px 96px;
    background: white;
    border-bottom: 1px solid #e0e0e0;
}

.store-tabs-wrapper {
    margin-bottom: 16px;
}

.store-tabs {
    display: flex;
    gap: 0;
    justify-content: space-between;
    box-shadow: 0px 0px 24px 0px #00000029;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.store-tab {
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: -2px;
    transition: all 0.3s ease;
    white-space: nowrap;
    color:#808080;border-radius: 16px;
}

.store-tab:hover {
    color: #0093d8;
}

.store-tab.active {
    color: #fff;
    font-weight: 600;
    background: linear-gradient(0deg, #259DD5 0%, #66BAE2 100%);

}

.store-search-wrapper {
    width: 100%;
}

.store-search {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.store-products-section {
    padding: 64px 96px;
}

.store-featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.store-featured-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.store-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.store-products-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.store-product-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.store-product-card.featured-large {
    /* Takes full height of grid */
}

.store-product-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
    z-index: 1;
}

.store-product-badge {
    background: #f1cf77;
    border: 1px solid #ebbb3d;
    padding: 4px 12px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #1e1e1e;
}

.store-product-badge.spotlight {
    background: #EBA97C;
    border-color: #F3792A;
    color: #ffffff;
}

.store-product-badge.bestseller {
    background: #C99BBF;
    border-color: #B271A4;
    color: #ffffff;
}

.store-product-badge.editor {
    background: #F26065;
    border-color: #EC1C24;
    color: #fff;
}

.store-product-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #0093d8;
    margin-top: 8px;
}
.store-product-badges + .store-product-title{margin-top: 30px}
.orange{color: #C65308}
.store-product-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #1e1e1e;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.store-product-features {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.store-product-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
}

.store-product-meta-item {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
}

.store-meta-icon {

}
.store-meta-icon img{
    display: block;
    margin: 0 auto;
}

.store-product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.store-price-old {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.store-price-current {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #0093d8;
}

.store-product-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.btn-store-primary {
    flex: 1;
    background: linear-gradient(to top, #259dd5, #66bae2);
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-store-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-store-secondary {
    flex: 1;
    background: white;
    border: 1px solid #0093d8;
    padding: 10px 24px;
    border-radius: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #0093d8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-store-secondary:hover {
    background: #f0f8ff;
}

.store-product-card-detailed {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.store-comparison-section {
    padding: 64px 96px;
    background: #f5f5f5;
}

.store-comparison-table {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 32px;
    box-shadow: 0px 0px 24px 0px #00000029;

}

.store-comparison-table:has(.store-comparison-row.header .store-comparison-cell:nth-child(6):empty) {
    grid-template-columns: 1fr repeat(5, 1fr);
}

.store-comparison-row {
    display: contents;
}

.store-comparison-row.header {
    background: #0093d8;
}


.store-comparison-cell {
    background: white;
    padding: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #1e1e1e;
    border-bottom: 1px solid  #e0e0e0;
}
.store-comparison-row:first-child .store-comparison-cell{border-bottom: none}
.store-comparison-row:last-child .store-comparison-cell{border-bottom: none}
.store-comparison-row:nth-last-child(2) .store-comparison-cell{border-bottom: 2px solid  #e0e0e0}

.store-comparison-row.header .store-comparison-cell {
    background: linear-gradient(0deg, #259DD5 0%, #66BAE2 100%);
    color: white;
    font-weight: 600;
    font-size: 20px;
}
.store-comparison-cell:first-child{
    color: #0093D8;
    font-weight: 600;
    font-size: 20px;
}

.store-faq-section {
    padding: 64px 96px;
}

.store-faq-section .faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.store-faq-section .faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.store-faq-section .faq-question:hover {
    background: #f5f5f5;
}

.store-faq-section .faq-question h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1e1e1e;
    margin: 0;
}

.store-faq-section .faq-toggle {
    font-size: 24px;
    color: #0093d8;
    font-weight: 300;
    line-height: 1;
}

.store-faq-section .faq-answer {
    display: none;
    padding: 0 24px 20px 24px;
}

.store-faq-section .faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.store-faq-cta {
    margin-top: 32px;
    text-align: center;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 24px;
    background: linear-gradient(to top, #259dd5, #66bae2);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    max-width: 300px;
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-modal.active {
    opacity: 1;
    visibility: visible;
}

.cart-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.cart-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.cart-modal.active .cart-modal-content {
    transform: scale(1) translateY(0);
}

.cart-modal-header {
    padding: 24px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-modal-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #1e1e1e;
    margin: 0;
}

.cart-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-modal-close:hover {
    background: #f5f5f5;
    color: #1e1e1e;
}

.cart-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    min-height: 200px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #0093d8;
    margin: 0 0 8px 0;
}

.cart-item-price {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 4px;
}

.cart-quantity-btn {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #0093d8;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cart-quantity-btn:hover {
    background: #f0f8ff;
}

.cart-quantity-input {
    width: 60px;
    text-align: center;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e1e1e;
    padding: 4px;
    -moz-appearance: textfield;
}

.cart-quantity-input::-webkit-outer-spin-button,
.cart-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item-total {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.cart-item-total-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
}

.cart-item-total-value {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #0093d8;
}

.cart-item-remove {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: #ff5252;
}

.cart-modal-footer {
    padding: 24px;
    border-top: 1px solid #e0e0e0;
    background: #f9f9f9;
}

.cart-total {
    margin-bottom: 20px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.cart-total-row:last-child {
    border-top: 2px solid #e0e0e0;
    padding-top: 16px;
    margin-top: 8px;
}

.cart-total-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666;
}

.cart-total-value {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1e1e1e;
}

.cart-total-final {
    font-size: 24px;
    color: #0093d8;
}

.cart-modal-actions {
    display: flex;
    gap: 12px;
}

/* Home: Explore TEIQue assessments */
.explore-section {
    padding: 64px 96px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.explore-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.explore-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.explore-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(7.105427357601002e-14deg, rgba(255, 255, 255, 0) 76.885%, rgb(255, 255, 255) 100%),
    linear-gradient(179.99999999999994deg, rgba(255, 255, 255, 0) 64.484%, rgb(255, 255, 255) 100%);
    z-index: 1;
}

.explore-container {
    position: relative;
    z-index: 2;
}

.explore-header {
    margin-bottom: 24px;
}

.explore-section .section-title {
    text-align: left;
    color: #0093d8;
    margin-bottom: 0;
}

.explore-section .coaching-section-description {
    max-width: 800px;
    margin-top: 0;
    color: #1e1e1e;
    font-size: 18px;
    line-height: 1.4;
}

.explore-cards {
    display: flex;
    gap: 16px;
    margin: 24px 0;
    padding: 24px 0;
    flex-wrap: wrap;
}

.explore-card {
    flex: 1;
    background: linear-gradient(to top, #f3792a, #eba97c);
    border: none;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.explore-card:hover {
    transform: translateY(-2px);
}

.explore-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: white;
    margin: 0;
}

.explore-cta {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
}

/* Home: Learning & Certification */
.learning-section {
    padding: 64px 96px;
    background: #ffffff;
}

.learning-content-wrapper {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-top: 24px;
}

.learning-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    flex: 1;
}

.learning-card {
    border: 4px solid white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    position: relative;
    height: 411px;
}

.learning-card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.learning-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.learning-card-bg{background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, #FFFFFF 66.75%);position: absolute;top: 0;left: 0;width: 100%;height: 100%}
.learning-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.67) 66.751%);
    padding: 24px;

    display: flex;height: 100%;justify-content: space-between;
    flex-direction: column;
    gap: 16px;
}
.learning-card-badge {
    background: #66bae2;
    border: 1px solid #0093d8;
    border-radius: 16px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    display: inline-block;
    width: fit-content;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
}

.learning-card-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #0093d8;
}

.learning-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
}

.learning-card-list {
    list-style: disc;
    padding-left: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #0093d8;
    margin: 8px 0;
}

.learning-card-list li {
    margin-bottom: 4px;
}

.learning-cta {
    display: flex;
    align-items: flex-start;
    padding-top: 16px;
}

.store-product-features-list {
    margin: 12px 0 0;
    padding-left: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #0093d8;
}

/* Home: CTA */
.cta-section {
    padding: 40px 96px 64px;
    background: #f9fafb;
}

.cta-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    text-align: center;
}

.cta-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #1e1e1e;
    margin: 16px 0 24px;
}

.btn-cart-continue {
    flex: 1;
    background: white;
    border: 2px solid #0093d8;
    color: #0093d8;
    border-radius: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.btn-cart-continue:hover {
    background: #f0f8ff;
}

.btn-cart-checkout {
    flex: 1;
    background: linear-gradient(to top, #259dd5, #66bae2);
    border: none;
    color: white;
    border-radius: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 0;
    text-align: center;
}

.btn-cart-checkout:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Product Page Styles */
.product-hero {
    background: #ffffff;
    padding: 64px 0 32px;
}

.product-hero-content {
    text-align: left;
}

.product-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #1e1e1e;
    margin-bottom: 16px;
}

.product-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.product-intro {
    padding: 64px 0;
    background: #ffffff;
}

.product-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.product-visual {
    position: relative;
}

.product-image-placeholder {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.product-visual-content {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-visual-main {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.product-visual-head {
    width: 120px;
    height: 120px;
    border: 3px solid #0093d8;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #ffffff;
}

.product-visual-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #0093d8;
}

.product-visual-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.product-visual-element {
    position: absolute;
    background: #0093d8;
    border-radius: 4px;
}

.product-visual-element.element-1 {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 20px;
    background: #66bae2;
}

.product-visual-element.element-2 {
    width: 25px;
    height: 25px;
    bottom: 30px;
    left: 10px;
    background: #259dd5;
}

.product-visual-element.element-3 {
    width: 20px;
    height: 20px;
    top: 50%;
    right: 0;
    background: #0093d8;
}

.product-visual-element.element-4 {
    width: 35px;
    height: 35px;
    bottom: 10px;
    right: 30px;
    background: #66bae2;
    border-radius: 50%;
}

.product-visual-label {
    margin-top: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
}

.product-description {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-description-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #1e1e1e;
}

.product-description-text p {
    margin-bottom: 16px;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-option-card {
    border: 2px solid #66bae2;
    border-radius: 12px;
    padding: 24px;
    background: #ffffff;
}

.product-option-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #0093d8;
    margin-bottom: 12px;
}

.product-option-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.product-configure {
    padding: 64px 0;
    background: #f9f9f9;
}

.configure-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.configure-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #1e1e1e;
    margin-bottom: 12px;
}

.configure-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.configure-form {
    background: #ffffff;
    border: 2px solid #66bae2;
    border-radius: 16px;
    padding: 32px;
}

.configure-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e0e0e0;
}

.configure-section:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.configure-section-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1e1e1e;
    margin-bottom: 20px;
}

.configure-toggle-wrapper {
    margin-bottom: 20px;
}

.configure-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.configure-toggle input[type="checkbox"] {
    display: none;
}

.configure-toggle-slider {
    position: relative;
    width: 50px;
    height: 28px;
    background: #e0e0e0;
    border-radius: 14px;
    transition: background 0.3s ease;
}

.configure-toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    top: 3px;
    left: 3px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.configure-toggle input[type="checkbox"]:checked + .configure-toggle-slider {
    background: #0093d8;
}

.configure-toggle input[type="checkbox"]:checked + .configure-toggle-slider::before {
    transform: translateX(22px);
}

.configure-toggle-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1e1e1e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-option {
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.toggle-option.active {
    background: #0093d8;
    color: #ffffff;
}

.configure-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.configure-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.configure-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e1e1e;
}

.configure-input,
.configure-select {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1e1e1e;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.configure-input:focus,
.configure-select:focus {
    outline: none;
    border-color: #0093d8;
}

.configure-input::placeholder {
    color: #999;
}

.configure-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.configure-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 2px solid #e0e0e0;
}

.configure-pricing-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.configure-price-old {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.configure-price-new {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #0093d8;
}

.btn-configure-add {
    background: linear-gradient(to top, #259dd5, #66bae2);
    border: none;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 16px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-configure-add:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 147, 216, 0.3);
}

.product-faq {
    padding: 64px 0;
    background: #ffffff;
}

.product-faq-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #1e1e1e;
    margin-bottom: 32px;
}

.product-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.product-faq .faq-item {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
}

.product-faq .faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1e1e1e;
    transition: background 0.3s ease;
}

.product-faq .faq-question:hover {
    background: #f0f0f0;
}

.product-faq .faq-arrow {
    font-size: 12px;
    color: #0093d8;
    transition: transform 0.3s ease;
}

/*.product-faq .faq-item.active .faq-arrow {*/
/*    transform: rotate(180deg);*/
/*}*/

.product-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.product-faq .faq-item.active .faq-answer {
    max-height: 500px;
}

.product-faq .faq-answer p {
    padding: 0 24px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.product-faq-cta {
    text-align: center;
}

.btn-product-faq {
    background: linear-gradient(to top, #259dd5, #66bae2);
    border: none;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 16px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-product-faq:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* New Product Page Styles */
.product-hero-new {
    padding: 40px 0;
    background: #ffffff;
}

.product-hero-content-new {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-title-new {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.4;
    margin: 0;
}

.title-blue {
    color: #0093d8;
}

.title-orange {
    color: #f3792a;
}

.title-small {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #0093d8;
}

.product-subtitle-new {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #1e1e1e;
    line-height: 1.4;
    margin: 0;
}

.product-hero-main {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-top: 24px;
}

.product-gallery {
    flex: 0 0 219px;
}

.product-gallery-container {
    background: linear-gradient(to top, #ededed, rgba(255, 255, 255, 0.696));
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    position: relative;
}

.product-gallery-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 595 / 842;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.gallery-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #259dd5, #66bae2);
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 16px 16px;
}

.gallery-slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: #ffffff;
    width: 12px;
    height: 12px;
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.gallery-fullscreen {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.gallery-fullscreen svg {
    width: 14px;
    height: 14px;
}

.product-hero-description {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-description-text-new {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
    margin: 0;
}

.product-options-new {
    display: flex;
    gap: 16px;
}

.product-option-card-new {
    flex: 1;
    background: #ffffff;
    border: 6px solid #259dd5;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.product-option-card-new.active {
    border: 6px solid #259dd5;
}

.product-option-card-new:not(.active) {
    border: none;
}

.product-option-card-new button {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0;
    cursor: pointer;
}

.product-option-title-new {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #0093d8;
    margin: 0 0 16px 0;
}

.product-option-description-new {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
    margin: 0;
}

.product-configure-new {
    padding: 40px 0;
    background: #ffffff;
}

.configure-wrapper-new {
    max-width: 100%;
}

.configure-title-new {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #0093d8;
    margin: 0 0 16px 0;
}

.configure-subtitle-new {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
    margin: 0 0 16px 0;
}

.configure-form-wrapper-new {
    background: #ffffff;
    border: 6px solid #259dd5;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
}

.configure-form-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.configure-section-new {
    grid-column: 1 / -1;
}

.configure-section-title-new {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #1e1e1e;
    margin: 0 0 16px 0;
}

.configure-form-group-new {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.configure-form-group-new:nth-child(2),
.configure-form-group-new:nth-child(3) {
    grid-column: span 2;
}

.configure-form-group-new:nth-child(4),
.configure-form-group-new:nth-child(5) {
    grid-column: span 2;
}

.configure-label-new {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #1e1e1e;
    line-height: 1.4;
}

.required-star {
    color: #f3792a;
}

.configure-input-new,
.configure-select-new {
    padding: 8px 16px;
    height: 32px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(to top, #ededed, rgba(255, 255, 255, 0.696));
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #808080;
    box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.2);
}

.configure-input-new::placeholder {
    color: #808080;
}

.configure-select-new {
    appearance: none;
    background: linear-gradient(to top, #259dd5, #66bae2);
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.configure-toggle-wrapper-new {
    display: flex;
    align-items: center;
    gap: 16px;
}

.toggle-label-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #1e1e1e;
    margin: 0;
}

.configure-toggle-new {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    cursor: pointer;
}

.configure-toggle-new input {
    opacity: 0;
    width: 0;
    height: 0;
}

.configure-toggle-slider-new {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #66bae2;
    border-radius: 16px;
    transition: 0.3s;
    box-shadow: inset 0px 0px 6px 2px rgba(0, 0, 0, 0.2);
}

.configure-toggle-slider-new::before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background: #ffffff;
    border-radius: 50%;
    transition: 0.3s;
}

.configure-toggle-new input:checked + .configure-toggle-slider-new {
    background: linear-gradient(to top, #259dd5, #66bae2);
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
}

.configure-toggle-new input:checked + .configure-toggle-slider-new::before {
    transform: translateX(16px);
}

.report-form-toggle {
    display: flex;
    align-items: center;
    gap: 16px;
}

.toggle-option-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #808080;
    line-height: 1.4;
}

.toggle-option-text.active {
    color: #0093d8;
}

.configure-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: #d9d9d9;
    margin: 24px 0;
}

.configure-pricing-new {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.configure-pricing-info-new {
    display: flex;
    align-items: center;
    gap: 16px;
}

.configure-price-old-new {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #808080;
    text-decoration: line-through;
}

.configure-price-new-new {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #0093d8;
    line-height: 1.4;
}

.btn-configure-add-new {
    background: linear-gradient(to top, #259dd5, #66bae2);
    border: none;
    color: #ffffff;
    padding: 10px 36px;
    border-radius: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-configure-add-new:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.product-faq-new {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(36.1px);
}

.product-faq-title-new {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #0093d8;
    margin: 0 0 24px 0;
}

.product-faq-list-new {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.faq-item-new {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.faq-question-new {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #0093d8;
    line-height: 1.4;
}

.faq-arrow-new {
    font-size: 9px;
    color: #0093d8;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item-new.active .faq-arrow-new {
    transform: rotate(0deg);
}

.faq-answer-new {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 16px;
}

.faq-item-new.active .faq-answer-new {
    max-height: 500px;
}

.faq-answer-new p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
    margin: 0;
}

.product-faq-cta-new {
    display: flex;
    justify-content: flex-end;
}

.btn-product-faq-new {
    background: linear-gradient(to top, #259dd5, #66bae2);
    border: none;
    color: #ffffff;
    padding: 10px 36px;
    border-radius: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-product-faq-new:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Store Page Responsive */
@media (max-width: 1200px) {
    .store-hero-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .store-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .store-featured-grid {
        grid-template-columns: 1fr;
    }

    .store-products-grid,
    .store-products-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media (max-width: 768px) {
    .store-hero {
        padding: 40px 24px 24px;
    }

    .store-hero-title {
        font-size: 32px;
    }

    .store-hero-subtitle {
        font-size: 18px;
    }

    .store-hero-description {
        font-size: 14px;
    }

    .store-hero-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    .store-tabs {
        overflow-x: auto;
        flex-direction: column;
    }

    .store-tabs::-webkit-scrollbar {
        display: none;
    }

    .store-tab {
        padding: 10px 16px;
        font-size: 13px;
        flex-shrink: 0;
    }

    .cart-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .cart-modal-header {
        padding: 20px;
    }

    .cart-modal-title {
        font-size: 20px;
    }

    .cart-modal-body {
        padding: 20px;
    }

    .cart-item {
        padding: 16px;
    }

    .cart-item-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-item-total {
        margin-left: 0;
        justify-content: space-between;
        width: 100%;
    }

    .cart-modal-footer {
        padding: 20px;
    }

    .cart-modal-actions {
        flex-direction: column;
    }

    .btn-cart-continue,
    .btn-cart-checkout {
        width: 100%;
    }

    .product-hero {
        padding: 40px 0 24px;
    }

    .product-title {
        font-size: 32px;
    }

    .product-subtitle {
        font-size: 16px;
    }

    .product-intro {
        padding: 40px 0;
    }

    .product-intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-visual-content {
        min-height: 200px;
    }

    .product-visual-main {
        width: 150px;
        height: 150px;
    }

    .product-visual-head {
        width: 100px;
        height: 100px;
    }

    .product-configure {
        padding: 40px 0;
    }

    .configure-form {
        padding: 24px;
    }

    .configure-form-grid {
        grid-template-columns: 1fr;
    }

    .configure-pricing {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .configure-pricing-info {
        justify-content: center;
    }

    .btn-configure-add {
        width: 100%;
    }

    .product-faq {
        padding: 40px 0;
    }

    .product-faq-title {
        font-size: 28px;
    }

    .store-info-section,
    .store-filter-section,
    .store-products-section,
    .store-comparison-section,
    .store-faq-section {
        padding: 32px 24px;
    }

    .explore-section {
        padding: 40px 24px;
    }

    .explore-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .learning-section {
        padding: 40px 24px;
    }

    .learning-content-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .learning-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;width: 100%;
    }

    .learning-card {
        height: auto;
        min-height: 411px;
    }

    .learning-cta {
        width: 100%;
        justify-content: center;
    }

    .store-info-cards {
        grid-template-columns: 1fr;
    }

    .store-products-grid,
    .store-products-grid-large {
        grid-template-columns: 1fr;
    }

    .store-product-card.featured-large {
        grid-column: span 1;
    }

    .store-product-buttons {
        flex-direction: column;
    }




    .store-comparison-cell {
        display: block;
        padding: 12px;
    }

    .store-comparison-table{overflow-x: scroll}
    .store-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .store-toggle-option {
        flex: 1;
        text-align: center;
    }

    .contact-info-card-text {
        font-size: 12px;
    }

    /* New Product Page Mobile Styles */
    .product-hero-new {
        padding: 40px 0 24px;
    }

    .product-title-new {
        font-size: 28px;
    }

    .product-subtitle-new {
        font-size: 20px;
    }

    .product-hero-main {
        flex-direction: column;
        gap: 24px;
    }

    .product-gallery {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .product-options-new {
        flex-direction: column;
        gap: 16px;
    }

    .configure-title-new {
        font-size: 20px;
    }

    .configure-form-wrapper-new {
        padding: 16px;
    }

    .configure-form-grid-new {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .configure-form-group-new:nth-child(2),
    .configure-form-group-new:nth-child(3),
    .configure-form-group-new:nth-child(4),
    .configure-form-group-new:nth-child(5) {
        grid-column: span 1;
    }

    .configure-pricing-new {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .btn-configure-add-new {
        width: 100%;
        font-size: 16px;
        padding: 10px 24px;
    }

    .product-faq-title-new {
        font-size: 24px;
    }

    .faq-question-new {
        font-size: 18px;
    }

    .product-faq-cta-new {
        justify-content: center;
    }
}

.faq-arrow{font-size: 0;width: 16px;height: 9px;display: block;background: url("../img/faq_arrow.png") no-repeat 50% / cover}
main{margin-top: -120px;}
main > *:first-child{padding-top: 150px}



/* Social Proof Page Styles */

.social-proof-section {
    padding: 56px 96px 64px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.social-proof-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.7;
}

.social-proof-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-proof-container {
    position: relative;
    z-index: 1;
}

/* Header */
.social-proof-header {
    text-align: center;
    margin-bottom: 64px;
}

.social-proof-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    color: #0093d8;
    margin-bottom: 16px;
}

.social-proof-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: #1e1e1e;
    max-width: 100%;
}

/* Metrics Row */
.social-proof-metrics {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.44);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 64px;
    box-shadow: 0px 0px 11.9px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.metric-item {
    display: flex;
    align-items: center;
    flex: 1;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: url('img/metric-divider.svg') no-repeat center;
    background-size: contain;
    margin: 0 16px;
    flex-shrink: 0;
}

.metric-item:first-child .metric-divider {
    display: none;
}

.metric-item:last-child {
    flex: 0;
}

.metric-item:last-child .metric-divider {
    display: block;
}

.metric-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 156px;
}

.metric-value {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.4;
    background: linear-gradient(to top, #f3792a, #eba97c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.metric-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: #0093d8;
    margin: 0;
    text-align: center;
}

/* Main Content: Two Columns */
.social-proof-main {
    display: flex;
    gap: 24px;
    margin-bottom: 64px;
}

.social-proof-left {
    flex: 1;
    background: rgba(255, 255, 255, 0.44);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 0px 11.9px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.social-proof-left > * {
    position: relative;
    z-index: 2;
}

.social-proof-section-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #0093d8;
    margin-bottom: 16px;
    text-align: justify;
}

.social-proof-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
    margin-bottom: 16px;
    text-align: justify;
}

.btn-social-proof {
    background: linear-gradient(to top, #259dd5 24.861%, #66bae2);
    border: none;
    border-radius: 24px;
    padding: 8px 16px;
    color: white;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s ease;
    position: relative;
    z-index: 1;
}

.btn-social-proof:hover {
    transform: translateY(-2px);
}

.btn-social-proof .btn-icon {
    font-size: 24px;
    line-height: 1;
}

.social-proof-right {
    flex: 0 0 553px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.publications-chart {
    width: 100%;
    aspect-ratio: 592/347;
    position: relative;
}

.publications-chart img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chart-caption {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #000000;
    text-align: center;
    letter-spacing: 0.28px;
}

/* Prof. Petrides Introduction */
.social-proof-intro {
    margin-bottom: 64px;
}

.intro-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: #1e1e1e;
    text-align: justify;
}

/* Bottom Section: Two Columns */
.social-proof-bottom {
    display: flex;
    gap: 32px;
    background: rgba(255, 255, 255, 0.44);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 64px;
    box-shadow: 0px 0px 11.9px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.social-proof-bottom-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.achievement1-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.badge-text {
    background: #66bae2;
    border: 1px solid #0093d8;
    border-radius: 16px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    color: white;
    letter-spacing: 0.28px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
}

.badge-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #1e1e1e;
    letter-spacing: 0.28px;
}

.achievement1-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 277px;
}

.achievement1-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #0093d8;
    margin: 0;
}

.achievement1-title .gradient-text {
    font-size: 36px;
    background: linear-gradient(to top, #f3792a, #eba97c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement1-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
    text-align: justify;
    margin: 0;
}

.btn-achievement1 {
    background: linear-gradient(to top, #259dd5, #66bae2);
    border: none;
    border-radius: 24px;
    padding: 10px 36px;
    color: white;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
    align-self: flex-start;
    transition: transform 0.2s ease;
}

.btn-achievement1:hover {
    transform: translateY(-2px);
}

.social-proof-bottom-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rank-card {
    background: linear-gradient(to top, rgba(243, 121, 42, 0.12), rgba(235, 169, 124, 0.12));
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 0px 11.9px rgba(255, 255, 255, 0.5);
    text-align: center;
}

.rank-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #c65308;
    margin-bottom: 24px;
}

.rank-value-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rank-value {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.4;
    margin: 0;
}

.gradient-text-orange {
    background: linear-gradient(to top, #f3792a, #eba97c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rank-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #c65308;
    margin: 0;
}



.stats-grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card2 {
    background: linear-gradient(to top, rgba(37, 157, 213, 0.1), rgba(102, 186, 226, 0.1));
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 0px 11.9px rgba(255, 255, 255, 0.5);
    text-align: center;
}

.stat-value2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.gradient-text-blue {
    background: linear-gradient(to top, #259dd5, #66bae2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label2 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #0093d8;
    margin: 0;
}

/* Scroll Arrow */
.scroll-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.scroll-arrow-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transform: rotate(180deg);
    width: 50px;
    height: 26px;
}

.scroll-arrow-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .social-proof-section {
        padding: 56px 48px 64px;
    }

    .social-proof-main {
        flex-direction: column;
    }

    .social-proof-right {
        flex: 1;
        max-width: 100%;
    }

    .social-proof-bottom {
        flex-direction: column;
    }

    .achievement1-content {
        height: auto;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .social-proof-section {
        padding: 40px 24px 64px;
    }

    .social-proof-title {
        font-size: 24px;
    }

    .social-proof-subtitle {
        font-size: 16px;
    }

    .social-proof-metrics {
        flex-wrap: wrap;
        gap: 16px;
    }

    .metric-item {
        flex: 0 0 calc(50% - 8px);
    }

    .metric-content {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
.hidden_proof{display: none}
.explore_social_proof.active{transform: rotate(180deg)}

/* Checkout Page Styles */

.checkout-page {
    background-color: #ffffff;
    min-height: 100vh;
    padding-bottom: 40px;
}

.checkout-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 96px;
}

/* Checkout Header */
.checkout-header {
    padding: 48px 0;
}

.checkout-header-content {
    display: flex;
    gap: 24px;
    align-items: center;
}

.checkout-basket-wrapper {
    position: relative;
    width: 96px;
    height: 96px;
}

.checkout-basket-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #0093d8;
    mix-blend-mode: color;
    pointer-events: none;
}

.checkout-basket-icon {
    width: 96px;
    height: 96px;
    object-fit: contain;
    display: block;
}

.checkout-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.4;
    color: #0093d8;
    margin: 0;
}

/* Progress Bar */
.checkout-progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-bottom: 48px;
    width: 100%;
}

.progress-steps {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 110px;
}


.progress-number {
    width: 42px;
    height: 43px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
}

.progress-number.active {
    background: linear-gradient(to top, #259dd5, #66bae2);
    color: #ffffff;
    font-weight: 500;
}

.progress-number:not(.active) {
    background: #ffffff;
    color: #9b9b9b;
    font-weight: 400;
}

.progress-line {
    flex: 1;
    height: 3px;
    position: relative;
    min-width: 0;
}

.progress-line img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 1px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.progress-label {
    color: #808080;
}

.progress-label {
    width: 110px;
}



.progress-label.active {
    color: #0093d8;
}

/* Main Content */
.checkout-main {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
}

.checkout-left {
    width: 370px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.checkout-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Section Styles */
.checkout-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-section-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    color: #0093d8;
    margin: 0;
}

.recipient-title {
    font-size: 24px;
}

/* Order Items */
.order-item {
    border: 4px solid #ffffff;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.order-item-content {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.01) 16.165%, #ffffff 78.544%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-row {
    display: flex;
    gap: 16px;
    align-items: center;
    line-height: 1.4;
}

.order-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #0093d8;
}

.order-value {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #1e1e1e;
    text-align: right;
}

.order-divider {
    height: 0;
    width: 100%;
    position: relative;
}

.order-divider img {
    width: 100%;
    height: 1px;
    display: block;
}

.order-label-total {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #0093d8;
}

.order-value-total {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #1e1e1e;
    text-align: right;
}

/* Promo Code */
.promo-code-card {
    border: 4px solid #ffffff;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.promo-code-content {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.01) 16.165%, #ffffff 78.544%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.promo-input {
    background: linear-gradient(to top, #ededed, #ffffff 69.609%);
    border: none;
    border-radius: 16px;
    padding: 8px 16px;
    height: 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #808080;
    box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.2);
    width: 100%;
    min-width: 200px;
}

.promo-input::placeholder {
    color: #808080;
}

.btn-promo-apply {
    background: linear-gradient(to top, #259dd5, #66bae2);
    border: none;
    border-radius: 53px;
    padding: 16px 40px;
    height: 44px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    line-height: 1;
}

.btn-promo-apply:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Grand Total */
.grand-total-card {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.01) 16.165%, #ffffff 78.544%);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    height: 62px;
    display: flex;
    align-items: center;
}

.grand-total-row {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.grand-total-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #0093d8;
}

.grand-total-value {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #1e1e1e;
    text-align: right;
}

/* Form Styles */
.form-card {
    border: 4px solid #ffffff;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.form-card-content {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.01) 16.165%, #ffffff 78.544%);
    backdrop-filter: blur(10.2px);
    padding: 24px;
}

.billing-form,
.recipient-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: #0093d8;
}

.required {
    color: #c65308;
}

.form-input {
    background: linear-gradient(to top, #ededed, #ffffff 69.609%);
    border: none;
    border-radius: 16px;
    padding: 8px 16px;
    height: 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #1e1e1e;
    box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.2);
    width: 100%;
    min-width: 200px;
}

.form-input::placeholder {
    color: #808080;
}

.form-select-wrapper {
    position: relative;
    width: 100%;
}

.form-select {
    background:  #259dd5;
    border: none;
    border-radius: 16px;
    padding: 16px;
    padding-right: 40px;
    width: 100%;
    min-width: 80px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    appearance: none;
    cursor: pointer;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
}

.form-select option {
    color: #fff;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    width: 14px;
    height: 8px;
    pointer-events: none;
}

/* Checkbox Styles */
.checkbox-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.checkbox-input {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #ffffff;
    border: none;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    appearance: none;
    position: relative;
    flex-shrink: 0;
}

.checkbox-input:checked {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.checkbox-input:checked::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 16px;
    background: linear-gradient(to top, #259dd5, #66bae2);
    display: block;
}

.checkbox-label {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
    cursor: pointer;
}

/* Company Details */
.company-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.company-details .form-group {
    width: 100%;
}

/* Recipient Details */
.recipient-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.recipient-details .form-group {
    width: 100%;
}

/* Continue Button */
.btn-continue {
    background: linear-gradient(to top, #259dd5, #66bae2);
    border: none;
    border-radius: 53px;
    padding: 16px 40px;
    height: 44px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .checkout-container {
        padding: 0 48px;
    }

    .checkout-main {
        flex-direction: column;
    }

    .checkout-left {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .checkout-container {
        padding: 0 24px;
    }

    .checkout-header-content {
        gap: 16px;
    }

    .checkout-basket-icon {
        width: 64px;
        height: 64px;
    }

    .checkout-title {
        font-size: 28px;
    }

    .progress-steps {
        max-width: 100%;
    }

    .progress-step {
        width: 80px;
    }

    .progress-labels {
        font-size: 14px;
    }

    .progress-label {
        width: 80px;
    }

    .form-row {
        flex-direction: column;
    }
}


.order-item + .order-item{margin-top: 30px}
.single_report_for_delete{position: relative}
.single_report_for_delete > a {
    position: absolute;
    top: 5px;
    left: -20px;
    color: red;
    cursor: pointer;
}