/* -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #3498db;
    --primary-color-dark: #2980b9;
    --primary-color-rgb: 52, 152, 219;
    --secondary-color: #2ecc71;
    --secondary-color-dark: #27ae60;
    --secondary-color-rgb: 46, 204, 113;
    --tertiary-color: #7f8c8d;
    --tertiary-color-dark: #6c757d;
    --tertiary-color-rgb: 127, 140, 141;
    --background-light: #121212;
    --background-medium: #1e1e1e;
    --background-dark: #2c2c2c;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --text-on-dark: #f5f5f5;
    --border-color: #444;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.6;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-primary);
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/assets/backgrounds/bg-image1.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-on-dark);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 0 !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--secondary-color);
    color: var(--text-on-dark);
    transform: translateY(-2px);
}

.btn-tertiary {
    background-color: var(--tertiary-color);
    color: var(--text-on-dark);
    border-color: var(--tertiary-color);
}

.btn-tertiary:hover,
.btn-tertiary:focus {
    background-color: var(--tertiary-color-dark);
    border-color: var(--tertiary-color-dark);
    transform: translateY(-2px);
}

/* -------------------------------------------------------------------------- */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--background-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
}

.header-left .logo img {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width: 991px) {
    .header-left .logo img {
        height: 50px;
    }

}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.desktop-menu a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s ease;
    position: relative;
}

.desktop-menu a:hover {
    color: var(--primary-color);
}

.desktop-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.desktop-menu a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.cart-icon {
    position: relative;
    color: var(--text-primary);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: var(--primary-color);
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--secondary-color);
    color: var(--text-on-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    padding: 2px 6px;
    line-height: 1;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.mobile-menu-full {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-dark);
    color: var(--text-on-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-menu-full.active {
    display: flex;
    transform: translateY(0);
}

.mobile-menu-full ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-menu-full a {
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-on-dark);
    transition: color 0.3s ease;
}

.mobile-menu-full a:hover {
    color: var(--primary-color);
}

.mobile-menu-full a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-on-dark);
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 991px) {
    .desktop-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header-right {
        gap: 1rem;
    }

    .desktop-nav-btn {
        display: none;
    }
}

/* -------------------------------------------------------------------------- */
.site-footer {
    background: var(--background-light);
    color: var(--text-secondary);
    padding-top: 4rem;
    padding-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 3rem;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-about {
    flex: 1.5;
    min-width: 250px;
}

.footer-logo {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-contact {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    position: relative;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

@keyframes bg-animation {
    0% {
        background-position: 0% 50%, 100% 50%;
    }

    50% {
        background-position: 100% 50%, 0% 50%;
    }

    100% {
        background-position: 0% 50%, 100% 50%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-description,
    .footer-contact {
        margin-left: auto;
        margin-right: auto;
    }
}

/* -------------------------------------------------------------------------- */
.hero.pricing-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('/assets/backgrounds/bg-image2.png');
    background-size: cover;
    background-position: center;
    color: var(--text-on-dark);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero.pricing-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--tertiary-color));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.pricing-features {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-features li span {
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 0.6rem;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pricing-features li span::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-on-dark);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-hero-ctas {
    margin-top: 3rem;

}

@media (max-width: 768px) {
    .hero.pricing-hero {
        padding: 4rem 0;
        background-attachment: scroll;
    }

    .pricing-features {
        gap: 1rem;
    }

    .pricing-hero-ctas a:nth-child(1) {
        margin-bottom: 1rem;

    }

    .pricing-hero-ctas a:nth-child(2) {
        position: relative;
        right: 0.5rem;

    }

}

/* -------------------------------------------------------------------------- */
.features-section {
    padding: 6rem 0;
}

.features-section.top-spacing-none {
    padding: 0 0 6rem 0;
}

.features-section .section-title {
    position: relative;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 3.5rem;
    color: var(--secondary-color);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.features-section .section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.features-section .grid {
    display: grid;
    gap: 2rem;
}

.features-section .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}


@media (max-width: 768px) {
    .features-section .grid-3 {
        grid-template-columns: 1fr;
    }
}

.features-section .card {
    position: relative;
    background: rgba(var(--background-dark-rgb), 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    border: 5px solid var(--text-on-dark);
    background-clip: padding-box;
}

.features-section .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: -2px;
    border-radius: 12px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: -1;
}

.features-section .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
    border: 2px solid var(--text-on-dark);
}

.features-section .card-icon i {
    font-size: 32px;
    color: var(--text-on-dark);
}

.features-section .card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--background-light);
    margin-bottom: 0.75rem;
}

.features-section .card p {
    font-size: 1rem;
    color: var(--background-light);
    line-height: 1.6;
}

/* -------------------------------------------------------------------------- */
.pricing-section {
    background: radial-gradient(circle at 50% 10%, rgba(var(--background-light-rgb), 0.9) 0%, rgba(var(--background-dark-rgb), 0.1) 100%);
    padding: 6rem 0;
}

.pricing-section.top-spacing-none {
    padding: 0 0 6rem 0;
}

.pricing-section .section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 6rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
    position: relative;
}

.pricing-section .section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.pricing-section .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pricing-section .plan-card {
    position: relative;
    z-index: 1;
    background-color: rgba(var(--card-background-rgb), 0.6);
    backdrop-filter: blur(5px);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    border: 5px solid var(--primary-color-dark);
}

.pricing-section .plan-card:nth-of-type(2) {
    animation-delay: 0.2s;
}

.pricing-section .plan-card:nth-of-type(3) {
    animation-delay: 0.4s;
}

.pricing-section .plan-card:hover {
    transform: translateY(-8px) rotateZ(1deg);
    box-shadow: 0 15px 30px rgba(var(--primary-color-rgb), 0.2);
}

.pricing-section .plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--background-light), var(--background-dark), var(--background-dark));
    z-index: -1;
    opacity: 1;
}

.pricing-section .plan-card.popular {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(var(--secondary-color-rgb), 0.3);
    z-index: 2;
}

.pricing-section .plan-card.popular:hover {
    transform: translateY(-15px) scale(1.05) rotateZ(1deg);
}

.pricing-section .plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--text-on-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(var(--secondary-color-rgb), 0.4);
}

.pricing-section .plan-header {
    margin-bottom: 1.5rem;
}

.pricing-section .plan-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-section .plan-price {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.pricing-section .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-section .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-section .plan-description {
    color: var(--text-primary);
    font-size: 0.9rem;
}

.pricing-section .plan-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-section .plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.pricing-section .plan-features li {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-section .plan-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.pricing-section .plan-action {
    text-align: center;
    margin-top: auto;
}

.pricing-section .plan-button {
    display: block;
    width: 100%;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.pricing-section .plan-button.primary {
    background-color: var(--primary-color);
    color: var(--text-on-dark);
}

.pricing-section .plan-button.primary:hover {
    background-color: var(--primary-color-dark);
    box-shadow: 0 0 15px rgba(var(--primary-color-rgb), 0.8);
}

.pricing-section .plan-button.secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.pricing-section .plan-button.secondary:hover {
    background-color: var(--text-primary);
    color: var(--background-light);
    box-shadow: 0 0 15px rgba(var(--text-primary-rgb), 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .pricing-section .section-title {
        margin-bottom: 2rem;
    }
}

/* -------------------------------------------------------------------------- */
@keyframes animate-border-gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.faq-section {
    background: linear-gradient(135deg, var(--background-dark), var(--background-light));
    padding: 4rem 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}


.faq-section .section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3.5rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    position: relative;
    z-index: 1;
    background-color: var(--card-background);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: red;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: -2px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 400% 400%;
    animation: animate-border-gradient 10s ease infinite;
    z-index: -1;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 28px;
    min-height: 28px;
    background-color: var(--background-medium);
    border-radius: 50%;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--secondary-color-dark);
    transition: transform 0.3s ease;
}

.faq-toggle::before {
    width: 14px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 14px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    padding: 0 2rem;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, padding 0.5s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0.5rem 2rem 1.5rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }
}

/* -------------------------------------------------------------------------- */
@keyframes background-dance {
    0% {
        background-position: 0% 0%;
    }

    25% {
        background-position: 50% 100%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 0%;
    }

    100% {
        background-position: 0% 0%;
    }
}

@keyframes float-orb {
    0% {
        transform: translate(-10%, -10%) scale(1);
    }

    50% {
        transform: translate(10%, 10%) scale(1.1);
    }

    100% {
        transform: translate(-10%, -10%) scale(1);
    }
}

.solid-cta-section {
    position: relative;
    overflow: hidden;
    background-color: var(--background-dark);
    padding: 6rem 0;
    border-top: 5px solid var(--secondary-color-dark);
}

.solid-cta-section.border-bottom {
    border-bottom: 5px solid var(--secondary-color-dark);
}

.solid-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--background-dark),
            var(--secondary-color));
    background-size: 200% 200%;
    opacity: 0.2;
    animation: background-dance 20s ease-in-out infinite;
    z-index: 0;
}

.solid-cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            var(--primary-color),
            transparent 50%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    opacity: 0.3;
    animation: float-orb 15s ease-in-out infinite alternate;
    z-index: 0;
}

.solid-cta-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.solid-cta-section .solid-cta-title {
    color: var(--text-on-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.solid-cta-section .solid-cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.solid-cta-section .solid-cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.solid-cta-section .solid-cta-button {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.solid-cta-section .solid-cta-button.primary {
    background-color: var(--primary-color);
    color: var(--text-on-dark);
}

.solid-cta-section .solid-cta-button.primary:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.4);
}

.solid-cta-section .solid-cta-button.secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.solid-cta-section .solid-cta-button.secondary:hover {
    background-color: var(--text-primary);
    color: var(--background-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--text-primary-rgb), 0.2);
}

@media (max-width: 600px) {
    .solid-cta-section .solid-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .solid-cta-section .solid-cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* -------------------------------------------------------------------------- */
.demo-section {
    padding: 6rem 0;
}

.demo-section.top-spacing-none {
    padding: 0 0 6rem 0;
}

.demo-section .demo-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

.demo-section .demo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.demo-section .demo-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.demo-section .demo-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.demo-section .demo-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.demo-section .demo-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-section .demo-button.primary {
    background: var(--primary-color);
    color: var(--text-on-dark);
}

.demo-section .demo-button.primary:hover {
    transform: translateY(-3px);
    background: var(--primary-color-dark);
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.4);
}

.demo-section .demo-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.demo-section .demo-button.secondary:hover {
    transform: translateY(-3px);
    background: var(--text-primary);
    color: var(--background-dark);
    box-shadow: 0 5px 15px rgba(var(--text-primary-rgb), 0.2);
}

.demo-section .demo-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.demo-section .demo-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.demo-section .image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: auto;
}

.demo-section .demo-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.demo-section .demo-image:nth-child(1) {
    position: relative;
    top: -1.5rem;
}

.demo-section .demo-image:hover {
    transform: scale(1.03);
}


.demo-section .demo-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.demo-section .demo-image:hover {
    transform: scale(1.03);
}

@media (max-width: 992px) {

    .demo-section .demo-content {
        text-align: center;
    }

    .demo-section .demo-buttons {
        justify-content: center;
    }

    .demo-section .demo-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .demo-section .demo-image-container {
        transform: none;
    }
}

@media (max-width: 768px) {
    .demo-section .image-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .demo-section .demo-image:nth-child(1) {
        position: relative;
        top: 0rem;
    }
}

/* -------------------------------------------------------------------------- */
.compare-section {
    padding: 6rem 0;
}

.compare-section .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.compare-section .compare-card {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: var(--background-dark);
    overflow: hidden;
}

.compare-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    table-layout: fixed;
    border: 3px solid var(--secondary-color-dark);
}

.compare-section thead {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.compare-section th {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-on-dark);
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
}

.compare-section th:first-child {
    text-align: left;
}

.compare-section td {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    border: 3px solid var(--secondary-color-dark);
}

.compare-section td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.compare-section td:nth-child(2) {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.compare-section td:nth-child(3) {
    color: var(--text-secondary);
}

.compare-section tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .compare-section .compare-card {
        background: transparent;
        box-shadow: none;
    }

    .compare-section table,
    .compare-section thead,
    .compare-section tbody,
    .compare-section th,
    .compare-section td,
    .compare-section tr {
        display: block;
        border: 0;
    }

    .compare-section thead {
        display: none;
    }

    .compare-section tr {
        position: relative;
        border: none;
        margin-bottom: 1.5rem;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        background: var(--background-dark);

        border: 3px solid var(--secondary-color-dark);
    }

    .compare-section td {
        border-bottom: none;
        position: relative;
        padding: 0.5rem 1rem;
        text-align: right;
    }

    .compare-section td::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-weight: 700;
        color: var(--text-primary);
        white-space: nowrap;
        text-align: left;
    }

    .compare-section tr td:nth-child(1) {
        border-bottom: 1px solid var(--primary-color-dark);
        text-align: left;
    }

    .compare-section tr td:nth-child(1)::before {
        content: none;
    }

    .compare-section tr td:nth-child(2)::before {
        content: "NextCircleOrg";
    }

    .compare-section tr td:nth-child(3)::before {
        content: "Competitors";
    }

    .compare-section td:nth-child(2),
    .compare-section td:nth-child(3) {
        font-size: 1.2rem;
    }
}

/* -------------------------------------------------------------------------- */
.about-section.stacked-layout {
    padding: 6rem 0;
}

.about-section .section-title {
    position: relative;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 3.5rem;
    color: var(--secondary-color);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.about-section .section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about-section .stacked-content-grid {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: auto;
}

.about-section .stacked-item {
    position: relative;
    background: var(--background-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    border: 3px solid var(--primary-color-dark);
}

.about-section .stacked-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-section .stacked-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.about-section .stacked-item:hover::before {
    opacity: 1;
}

.about-section .content-block {
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.about-section .content-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-section .content-block p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.about-section .content-block .accent-text {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.about-section .content-block h4 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-section .content-block ul {
    list-style: none;
}

.about-section .content-block li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.about-section .content-block li span {
    color: var(--primary-color);
    font-weight: 600;
}

/* -------------------------------------------------------------------------- */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem 2rem;
    align-items: flex-start;
}

.contact-form-card,
.contact-info-card {
    background: var(--background-dark);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--secondary-color-dark);
}

.contact-form-card:hover,
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.contact-section .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--secondary-color-dark);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-section .card-subtitle {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-section .card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--secondary-color-dark);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-on-dark);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(var(--background-dark-rgb), 0.8);
    border: 1px solid var(--secondary-color-dark);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.3);
}

.btn.btn-full-width {
    width: 100%;
    display: block;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
    color: var(--text-secondary);
}

.contact-list h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    padding: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--secondary-color-dark);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--secondary-color-dark);
}

.cta-box {
    padding: 0;
    background: rgba(var(--background-dark-rgb), 0.8);
    border-radius: 12px;
    text-align: start;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-box h3 {
    margin: 0 !important;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
}

.contact-grid button,
.contact-grid a {
    clip-path: none !important;
}

/* -------------------------------------------------------------------------- */
.legal-page {
    padding: 4rem 20px;
}

.legal-page .legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--background-medium);
    border-radius: 15px;
    border: 3px solid var(--secondary-color-dark);
}


.legal-page .legal-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.legal-page .legal-date {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    display: block;
}

.legal-page h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-on-dark);
}

.legal-page h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.legal-page p,
.legal-page ul,
.legal-page ol {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.legal-page ul,
.legal-page ol {
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.75rem;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-page a:hover {
    color: var(--primary-color);
}

.legal-page .legal-section {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 4rem 20px;
    }

    .legal-page .legal-container {
        padding: 2rem 30px;
    }

    .legal-page .legal-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}