.home-section,
.brand-section,
.features-section,
.how-it-works-section,
.why-monolinks-section,
.about-section,
.pricing-section,
.faq-section {
    scroll-margin-top: 80px;
}

.home-page{
    overflow-x: hidden;
}

.reveal-hidden {
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity;
}

.animate__delay-100ms { animation-delay: 100ms; }
.animate__delay-200ms { animation-delay: 200ms; }
.animate__delay-300ms { animation-delay: 300ms; }
.animate__delay-400ms { animation-delay: 400ms; }
.animate__delay-500ms { animation-delay: 500ms; }
.animate__delay-600ms { animation-delay: 600ms; }
.animate__delay-700ms { animation-delay: 700ms; }
.animate__delay-800ms { animation-delay: 800ms; }


.home-section {
    padding: 5rem 0;
}

.home-section-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.home-section-left-title h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
}

.home-section-left-title h1 strong {
    color: var(--green);
}

.home-section-left-description p {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: var(--gray);
    font-weight: 400;
    margin-bottom: 0;
}

.home-section-left i {
    font-size: clamp(1rem, 1vw, 1.25rem);
    color: var(--black);
    font-weight: 500;
    margin-bottom: 0;
}

.home-section-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .home-section {
        padding: 3rem 0;
    }

    .home-section .row.d-flex.align-items-center {
        flex-direction: column-reverse;
    }

    .home-section-right img{
        max-width: 500px !important;
        margin: auto;
    }

    .home-section-right {
        margin-bottom: 2rem;
    }
}

.brand-section {
    padding: 3rem 0;
    background-color: var(--green);
    overflow: hidden;
}

.brand-header {
    text-align: center;
  
}


.brand-header h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.brand-header h2 span {
    background-color: #fff;
    color: var(--green);
    padding: 0.1rem 0.75rem;
    border-radius: 8px;
}

.brand-header .brand-desc {
    font-size: 1.25rem;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.brand-header .brand-desc strong {
    color: #fff;
    text-decoration: underline;
}
.brand-header .brand-desc span {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

.brand-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.brand-slider-wrapper::before,
.brand-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.brand-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--green) 0%, transparent 100%);
}

.brand-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--green) 0%, transparent 100%);
}

.brand-slider {
    display: flex;
    width: fit-content;
    animation: brand-scroll 30s linear infinite;
}

.brand-slider:hover {
    animation-play-state: paused;
}

.brand-slider-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.brand-item {
    flex-shrink: 0;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.brand-item:hover {
    opacity: 1;
}

.brand-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

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

@media (max-width: 991px) {
    .brand-section {
        padding: 2rem 0;
    }


    .brand-slider-wrapper::before,
    .brand-slider-wrapper::after {
        width: 80px;
    }

    .brand-slider-track {
        gap: 3rem;
    }

    .brand-item {
        height: 24px;
    }
}

@media (max-width: 576px) {
    .brand-slider-wrapper::before,
    .brand-slider-wrapper::after {
        width: 50px;
    }

    .brand-slider-track {
        gap: 2rem;
    }

    .brand-item {
        height: 20px;
    }
}

.features-section {
    padding: 5rem 0;
    background-color: var(--off-white);
}

.feature-hero-card {
    background: linear-gradient(135deg, var(--black) 0%, #2c2f34 100%);
    border-radius: 16px;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-hero-icon {
    width: 56px;
    height: 56px;
    background-color: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-hero-card h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.sparkle-icon {
    position: absolute;
    top: -12px;
    left: -20px;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-hero-card p {
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(233, 233, 233, 1);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: clamp(1.1rem, 1.3vw, 1.25rem);
    font-weight: 600;
    color: var(--black);
    margin: 0;
    line-height: 1.4;
}

.feature-card p {
    font-size: clamp(0.85rem, 0.95vw, 0.95rem);
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .features-section {
        padding: 3rem 0;
    }

    .sparkle-icon {
        width: 20px;
        height: 20px;
        top: -12px;
        left: -18px;
    }
}

@media (max-width: 576px) {
    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-hero-icon {
        width: 48px;
        height: 48px;
    }

    .sparkle-icon {
        width: 20px;
        height: 20px;
        top: -12px;
        left: -18px;
    }
}

.how-it-works-section {
    padding: 5rem 0;
    background-color: white;
}

.how-it-works-header {
    margin-bottom: 2rem;
}

.how-it-works-header h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
}

.how-it-works-header h2 strong {
    color: var(--green);
}

.how-it-works-subtitle {
    font-size: clamp(1rem, 1vw, 1.25rem);
    color: var(--gray);
    margin-top: 1rem;
    line-height: 1.6;
}

.how-it-works-feature-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.how-it-works-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: var(--soft-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.how-it-works-feature-card h4 {
    font-size: clamp(1.25rem, 1.2vw, 1.5rem);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0;
}

.how-it-works-feature-card p {
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.5;
}

.how-it-works-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.why-monolinks-section {
    padding: 5rem 0;
    background-color: white;
}

.why-monolinks-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-monolinks-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.why-monolinks-header h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
}

.why-monolinks-header h2 strong {
    color: var(--green);
}

.why-monolinks-subtitle {
    font-size: clamp(1rem, 1vw, 1.25rem);
    color: var(--gray);
    margin-top: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.why-monolinks-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-monolinks-feature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.why-monolinks-feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--soft-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.why-monolinks-feature h4 {
    font-size: clamp(1.1rem, 1.1vw, 1.25rem);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0;
}

.why-monolinks-feature p {
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .how-it-works-section,
    .why-monolinks-section {
        padding: 3rem 0;
    }

    .how-it-works-image,
    .why-monolinks-image {
        margin-top: 2rem;
    }

    .why-monolinks-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .how-it-works-image {
        order: -1;
        margin-top: 0;
        margin-bottom: 2rem;
    }

    .why-monolinks-image {
        margin-bottom: 2rem;
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .why-monolinks-features {
        grid-template-columns: 1fr;
    }

    .how-it-works-feature-icon,
    .why-monolinks-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .how-it-works-feature-card {
        margin-bottom: 1.5rem;
    }
}

.about-section {
    padding: 5rem 0;
    background-color: white;
}

.about-header {
    margin-bottom: 3rem;
}

.about-header h2 {
    font-size: clamp(1.75rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.about-header h2 strong {
    color: var(--green);
}

.about-header p {
    font-size: clamp(0.9rem, 1.1vw, 1.15rem);
    color: rgba(139, 139, 139, 1);
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-card {
    background-color: rgba(251, 251, 251, 1);
    border: 1px solid rgba(233, 233, 233, 1);
    border-radius: 1.5rem;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-card h4 {
    font-size: clamp(1rem, 1.15vw, 1.25rem);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.about-card > p {
    font-size: clamp(0.85rem, 0.95vw, 1rem);
    color: rgba(139, 139, 139, 1);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.about-card-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
}

.about-card-image img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
    border-radius: 4px;
}

.about-card-wide .about-card-image img {
    max-height: 220px;
}

@media (max-width: 991px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-header {
        margin-bottom: 2rem;
    }

    .about-card-wide .about-card-image img {
        min-height: 150px;
    }
}

@media (max-width: 767px) {
    .about-card-image img {
        max-height: 150px;
    }

    .about-card-wide .about-card-image {
        min-height: 150px;
    }

    .about-card-wide .about-card-image img {
        max-height: 200px;
    }
}

@media (max-width: 576px) {
    .about-card {
        padding: 1.25rem;
    }

    .about-card-image {
        min-height: 100px;
    }

    .about-card-image img {
        max-height: 140px;
    }

    .about-card-wide .about-card-image {
        min-height: 120px;
    }

    .about-card-wide .about-card-image img {
        max-height: 160px;
    }
}

.pricing-section {
    padding: 5rem 0;
    background-color: rgba(243, 243, 243, 1);
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: clamp(1.75rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.pricing-header h2 strong {
    color: var(--green);
}

.pricing-header p {
    font-size: clamp(0.9rem, 1.1vw, 1.15rem);
    color: var(--gray);
    margin-bottom: 0;
}

.pricing-card {
    background-color: white;
    border: 1px solid rgba(226, 226, 226, 1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--green);
    color: white;
    font-size: clamp(0.65rem, 0.8vw, 0.75rem);
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-badge.badge-premium {
    background-color: rgba(198, 161, 79, 1);
}

.pricing-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.pricing-icon.icon-free {
    background-color: rgba(243, 243, 243, 1);
    color: var(--black);
}

.pricing-icon.icon-starter {
    background-color: rgba(219, 234, 254, 1);
    color: rgba(59, 130, 246, 1);
}

.pricing-icon.icon-pro {
    background-color: rgba(254, 243, 199, 1);
    color: rgba(217, 119, 6, 1);
}

.pricing-icon.icon-premium {
    background-color: rgba(220, 252, 231, 1);
    color: var(--green);
}

.pricing-card-title {
    font-size: clamp(1rem, 1.15vw, 1.25rem);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pricing-amount {
    font-size: clamp(1.75rem, 2.25vw, 2.25rem);
    font-weight: 700;
    color: var(--green);
}

.pricing-period {
    font-size: clamp(0.85rem, 0.95vw, 1rem);
    color: var(--gray);
    margin-left: 0.25rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-feature-icon {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0;
}

.pricing-feature span {
    font-size: clamp(0.85rem, 0.95vw, 1rem);
    color: var(--black);
}

.pricing-btn {
    width: 100%;
    margin-top: auto;
}
.pricing-btn-disabled {
    width: 100%;
    margin-top: auto;
    text-decoration: none;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 500;
    border: none;
    background-color: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.8;
}

.pricing-btn-outline {
    background-color: #fff;
    color: var(--green);
    border: 2px solid var(--green);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    cursor: default;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 500;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: block;
}

.pricing-btn-outline-link {
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.pricing-btn-outline-link:hover {
    background-color: rgba(13, 147, 97, 0.06);
    color: var(--green);
}

@media (max-width: 1199px) and (min-width: 992px) {
    .pricing-section .row {
        justify-content: center;
    }

    .pricing-section .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 991px) {
    .pricing-section {
        padding: 3rem 0;
    }

    .pricing-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .pricing-card {
        padding: 1.5rem;
    }
}

.custom-price-container {
    margin-top: 2.5rem;
}

.custom-price-table {
    background: white;
    border: 1px solid rgba(233, 233, 233, 1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
    position: relative; 
    margin-top: 40px;
    overflow: visible;
}

.cpt-wrapper {
    overflow-x: auto;
    padding-top: 20px; 
    margin-top: -20px;
}

.cpt-row {
    display: grid;
    grid-template-columns: 280px repeat(5, 1fr);
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(243, 243, 243, 1);
    min-height: 64px;
}

.cpt-row.cpt-head {
    border-top: none;
}

.cpt-row.cpt-head .cpt-feature-col {
    border-top-left-radius: 12px;
}
.cpt-row.cpt-head .cpt-plan-col:last-child {
    border-top-right-radius: 12px;
}

.cpt-cell {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cpt-feature-col {
    font-weight: 600;
    color: var(--black);
    background-color: #fff;
    font-size: clamp(12px, 1vw, 14px);
}

.cpt-plan-col { text-align: center; }

.plan-head { 
    display: flex; 
    flex-direction: column; 
    gap: .35rem; 
    align-items: center; 
    justify-content: center; 
    position: relative;
}

.plan-badge { 
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    white-space: nowrap; 
    font-size: .7rem; 
    padding: .2rem .6rem; 
    border-radius: 999px; 
    color: #fff; 
    background-color: var(--green); 
    font-weight: 600; 
}
.plan-title { font-weight: 700; color: var(--black); font-size: clamp(0.9rem, 1vw, 1.25rem); }
.plan-price { font-size: clamp(1.1rem, 1.25vw, 1.2rem); color: var(--green); font-weight: 700; }

.plan-pill {
    display: inline-block; 
    margin-top: .25rem; 
    padding: .5rem .9rem; 
    border-radius: 8px; 
    font-weight: 600; 
    text-decoration: none; 
    border: 1px solid rgba(13, 147, 97, 0.12); 
    color: var(--green); 
    background: #fff; 
    transition: background 0.2s, color 0.2s; 
    cursor: pointer; 
    font-size: clamp(12px, 1vw, 16px);
}
.plan-pill.plan-pill-disabled { background: #f1f5f9; color: #94a3b8; border-color: #f1f5f9; cursor: not-allowed; position: relative; user-select: none; }
.plan-pill.plan-pill-disabled[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    top: 110%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 0.4em 0.8em;
    border-radius: 6px;
    font-size: 0.9em;
    white-space: nowrap;
    z-index: 10;
    opacity: 1;
    pointer-events: none;
}


.plan-pill:not(.plan-pill-disabled):hover {
    box-shadow: 0 6px 18px rgba(2,128,101,0.06);
    background-color: var(--green);
    color: #fff;
}

.plan-pill.active {
    background: var(--green);
    color: #fff;
    border-color: transparent;
}
@media (max-width: 991px) {
    .plan-pill { width: 38px; height: 38px; font-size: .85rem; }
}
@media (max-width: 576px) {
    .plan-pill { width: 34px; height: 34px; font-size: .75rem; }
}

.btn-plan { display: inline-block; margin-top: .25rem; padding: .5rem .9rem; border-radius: 30px; font-weight: 600; text-decoration: none; border: 1px solid rgba(13, 147, 97, 0.12); color: var(--green); background: #fff; }
.btn-plan:hover { box-shadow: 0 6px 18px rgba(2,128,101,0.06); }
.btn-plan.btn-current { background: var(--green); color: #fff; border-color: transparent; }

.cpt-feature-value { justify-content: center; text-align: center; color: #6b7280; font-weight: 500; font-size: clamp(12px, 1vw, 14px); }
.cpt-feature-value.cell-yes .iconify { color: var(--green); }
.cpt-feature-value.cell-no .iconify { color: #ef4444; }
.cpt-feature-value.cell-text .cell-text-content { color: #6b7280; }

.cpt-row:not(.cpt-head):nth-of-type(even) { background: rgba(249, 250, 251, 1); }

@media (max-width: 1199px) {
    .cpt-wrapper {
        overflow-x: auto; 
        display: block;
        -webkit-overflow-scrolling: touch; 
    }

    .cpt-row {
        grid-template-columns: 200px repeat(5, 150px); 
        min-width: 950px; 
    }

    .plan-title, 
    .plan-price, 
    .cpt-feature-col, 
    .plan-badge,
    .cpt-feature-value,
    .cell-text-content {
        white-space: nowrap; 
    }

    .plan-pill {
        width: auto !important;
        height: auto !important;
        padding: 0.6rem 1rem;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cpt-row {
        grid-template-columns: 180px repeat(5, 140px);
        min-width: 880px;
    }
}

.faq-section {
    padding: 5rem 0;
}

.faq-header h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: clamp(1rem, 1vw, 1.5rem);
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(233, 233, 233, 1);
    padding: 2rem 0;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.faq-question h4 {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0;
    flex: 1;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

.faq-answer p {
    font-size: clamp(0.85rem, 0.95vw, 0.95rem);
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .faq-header {
        text-align: center;
        margin-bottom: 2rem;
    }
}


.platform-badge {
    transition: all 0.3s ease;
    cursor: default; 
}

.platform-badge:hover {
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important; 
}


.platform-badge .iconify {
    color: #0b8e5c;
    transition: transform 0.3s ease;
}

.platform-badge:hover .iconify {
    transform: scale(1.1);
}

.platformSwiper {
    width: 100%;
    overflow: hidden; 
}

.swiper-slide {
    width: auto !important; 
    display: flex;
    align-items: center;
}


.platformSwiper {
    padding: 10px 0; 
}

.platform-badge {
    user-select: none; 
}

.platform-badge .iconify,
.platform-badge span {
    pointer-events: none; 
}


.swiper-wrapper {
    display: flex;
    box-sizing: content-box;
}

@media (min-width: 992px) {
    .platform-categories-full {
        width: 100%;
        max-width: 1320px; 
        margin-left: auto;
        margin-right: auto;
        padding-left: 12px; 
        padding-right: 12px;
    }

    .platformSwiper .swiper-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        transform: none !important;
    }
    
    .platformSwiper .swiper-slide {
        width: auto !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 991px) {
    .platform-categories-full {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        overflow: hidden; 
    }

    .platformSwiper {
        width: 100%;
        padding: 15px 0; 
        overflow: visible; 
    }

    .platformSwiper .swiper-slide {
        width: auto !important;
        &:first-child { padding-left: 20px; }
        &:last-child { padding-right: 20px; }
    }

    .platform-categories-full::before,
    .platform-categories-full::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 50px; 
        z-index: 2; 
        pointer-events: none; 
    }

    .platform-categories-full::before {
        left: 0;
        background: linear-gradient(to right, rgba(11, 142, 92, 1) 0%, rgba(11, 142, 92, 0) 100%);
    }

    .platform-categories-full::after {
        right: 0;
        background: linear-gradient(to left, rgba(11, 142, 92, 1) 0%, rgba(11, 142, 92, 0) 100%);
    }
}



