:root {
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --accent-color: #6366F1;
    --accent-glow: rgba(99, 102, 241, 0.3);
    --text-gray: #4A5568;
    --bg-gradient: linear-gradient(135deg, #6366F1, #7C3AED);
    --glow-shadow: 0 0 20px var(--accent-glow);
    --card-shadow: 0 10px 30px -10px var(--accent-glow),
                   0 5px 15px rgba(0, 0, 0, 0.1);
    --depth-shadow: 0 20px 40px -20px var(--accent-glow);
    --logo-shadow: 0 0 30px var(--accent-glow);
    --shape-animation-duration: 20s;
    --luxury-gold: #FFD700;
    --luxury-silver: #C0C0C0;
    --luxury-pattern: rgba(255, 255, 255, 0.03);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--primary-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: var(--bg-gradient);
    padding: 1rem 0;
    color: var(--primary-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    flex-shrink: 0;
}

.main-logo {
    height: 50px;
    width: auto;
    border-radius: 10px;
    box-shadow: var(--logo-shadow);
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: translateY(-2px);
}

.header-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.header-text h1 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.header-text .tagline {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Challenges Section */
.challenges {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title .highlight {
    display: block;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.challenges-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.challenge-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.challenge-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transform: translateZ(30px);
    box-shadow: var(--glow-shadow);
}

.challenge-icon i {
    font-size: 1.8rem;
    color: var(--primary-white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.icon-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-white);
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transform: translateZ(40px);
}

.challenge-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pain-points h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.problem-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.problem-section, .solution-section {
    background: rgba(99, 102, 241, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.problem-section h4, .solution-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.problem-section h4 i, .solution-section h4 i {
    margin-right: 0.5rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.problem-section ul, .solution-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-section li, .solution-section li {
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.problem-section li:before, .solution-section li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.problem-section li:last-child, .solution-section li:last-child {
    margin-bottom: 0;
}

.challenges-summary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.summary-content p {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

.challenges-summary .summary-content p i {
    margin-right: 0.75rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-gradient);
    color: var(--primary-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--glow-shadow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), var(--glow-shadow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .main-logo {
        height: 40px;
    }

    .header-text h1 {
        font-size: 1.5rem;
    }

    .header-text .tagline {
        font-size: 0.9rem;
    }

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

    .section-title .subtitle {
        font-size: 1.2rem;
    }

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

    .challenge-card {
        padding: 1.5rem;
    }

    .challenges-summary {
        padding: 1.5rem;
    }

    .summary-content p {
        font-size: 1.1rem;
    }

    .challenge-icon {
        width: 50px;
        height: 50px;
    }

    .challenge-icon i {
        font-size: 1.5rem;
    }

    .icon-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Problems Section */
.problems {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 5rem 0;
}

.problems-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.problem-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.problem-header h2 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 0;
    line-height: 1.3;
}

.problem-tag {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.problem-section, .solution-section {
    background: rgba(99, 102, 241, 0.03);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.problem-section h3, .solution-section h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.problem-list, .solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li {
    margin-bottom: 1.5rem;
}

.problem-list li:last-child {
    margin-bottom: 0;
}

.problem-list strong {
    display: block;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.problem-list p {
    color: var(--text-gray);
    margin: 0;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.solution-list li:last-child {
    margin-bottom: 0;
}

.bottom-line {
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
}

.bottom-line h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.bottom-line p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.bottom-line p:last-child {
    margin-bottom: 0;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-logo {
        height: 32px;
    }

    .nav-title {
        font-size: 1.2rem;
    }

    header {
        margin-top: 60px;
    }

    .problem-card {
        padding: 1.5rem;
    }

    .problem-header {
        flex-direction: column;
    }

    .problem-header h2 {
        font-size: 1.5rem;
    }

    .problem-section, .solution-section {
        padding: 1.5rem;
    }

    .bottom-line {
        padding: 2rem 1.5rem;
    }

    .bottom-line h2 {
        font-size: 1.6rem;
    }
}

/* Tools Section */
.tools {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
    position: relative;
    overflow: hidden;
}

.tools::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        var(--accent-glow) 0%,
        transparent 70%
    );
    opacity: 0.1;
    pointer-events: none;
}

.tools .section-title {
    margin-bottom: 4rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 2rem auto;
    max-width: 1400px;
    padding: 0 20px;
}

.tool-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    transform-style: preserve-3d;
    transform: perspective(1000px) translateZ(0);
    transition: all 0.4s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), var(--glow-shadow);
    border-color: var(--accent-color);
}

.tool-image {
    text-align: center;
    margin: -1rem -1rem 2rem -1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(124, 58, 237, 0.05));
    border-radius: 20px;
    transform-style: preserve-3d;
}

.product-logo {
    max-width: 280px;
    height: auto;
    border-radius: 18px;
    transform: translateZ(40px);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tool-card:hover .product-logo {
    transform: translateZ(60px) scale(1.05);
}

.tool-card h3 {
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateZ(30px);
}

.tool-card h3 i {
    font-size: 1.5rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.tool-card p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transform: translateZ(25px);
}

.tool-card p:last-of-type {
    color: var(--text-gray);
    line-height: 1.6;
    transform: translateZ(20px);
}

.tool-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.tool-link:hover {
    color: inherit;
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .tool-card {
        padding: 2rem;
    }

    .product-logo {
        max-width: 250px;
    }

    .tool-card h3 {
        font-size: 1.5rem;
    }
}

/* Benefits Section */
.benefits {
    background-color: #f8f9fa;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        var(--accent-glow) 0%,
        transparent 70%
    );
    opacity: 0.1;
    transform: translateZ(-50px);
    pointer-events: none;
}

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

.benefit-item {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    transform: perspective(1000px) translateZ(0);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15), var(--glow-shadow);
}

.benefit-item h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateZ(30px);
}

.benefit-item ul {
    list-style: none;
}

.benefit-item li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-item li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Results Section */
.results {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
    position: relative;
    overflow: hidden;
}

.results .section-title i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

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

.stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transform: perspective(1000px) translateZ(0);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon-wrapper {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    transform: translateZ(30px);
    filter: drop-shadow(0 0 10px var(--accent-glow));
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: translateZ(40px) scale(1.1);
}

.stat-content {
    width: 100%;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    transform: translateZ(40px);
    filter: drop-shadow(0 10px 20px var(--accent-glow));
    position: relative;
    display: inline-block;
}

.stat-number[data-suffix]::after {
    content: attr(data-suffix);
    font-size: 2.5rem;
    margin-left: 0.25rem;
    opacity: 0.9;
}

.stat-card p {
    color: var(--text-gray);
    font-size: 1.1rem;
    transform: translateZ(20px);
    position: relative;
}

.results-pattern {
    background-image: 
        linear-gradient(45deg, var(--accent-glow) 25%, transparent 25%),
        linear-gradient(-45deg, var(--accent-glow) 25%, transparent 25%);
    background-size: 60px 60px;
    opacity: 0.05;
}

/* Enhanced CTA Section */
.cta {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: var(--primary-white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.offer-badge i {
    color: var(--luxury-gold);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.cta-title i {
    color: var(--luxury-gold);
    margin-right: 0.5rem;
}

.offer-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.offer-highlight {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-highlight i {
    color: var(--luxury-gold);
    margin-right: 0.5rem;
}

.offer-value {
    font-size: 1.25rem;
    color: var(--luxury-gold);
    margin-top: 0.5rem;
    font-weight: 700;
}

.offer-features {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
    text-align: left;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.offer-features i {
    color: var(--luxury-gold);
}

.urgency-timer {
    margin: 2rem auto;
    max-width: 500px;
}

.urgency-timer > span {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    min-width: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-item span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--luxury-gold);
    display: block;
}

.countdown-item label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-actions {
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--luxury-gold);
    color: var(--primary-black);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
}

.cta-button span {
    font-size: 1.25rem;
    margin: 0.25rem 0;
}

.cta-button small {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #FFE55C;
}

.guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.guarantee i {
    color: var(--luxury-gold);
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }

    .offer-box {
        padding: 1.5rem;
        margin: 0 1rem 2rem;
    }

    .offer-highlight {
        font-size: 1.25rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 0.75rem;
    }

    .countdown-item span {
        font-size: 2rem;
    }

    .cta-button {
        padding: 1.25rem 2rem;
    }
}

/* Footer */
footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    text-align: center;
    padding: 3rem 0;
    position: relative;
    transform-style: preserve-3d;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    transform: translateZ(20px);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--primary-white);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Particles Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.5;
    transform: translateZ(-100px);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --card-shadow: 0 5px 15px -5px var(--accent-glow),
                       0 3px 8px rgba(0, 0, 0, 0.1);
        --depth-shadow: 0 10px 20px -10px var(--accent-glow);
    }

    h1 {
        font-size: 2.5rem;
        transform: translateZ(30px);
    }

    .container {
        padding: 0 15px;
    }

    .problems-list li,
    .tool-card,
    .benefit-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

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

    .problems,
    .tools,
    .benefits,
    .results,
    .cta {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    transform-style: preserve-3d;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateZ(10px);
    width: 80px;
    height: 4px;
    background: var(--bg-gradient);
    border-radius: 2px;
    box-shadow: var(--glow-shadow);
}

/* Card Glow Effect */
.card-glow {
    display: none;
}

/* Button Glow Effect */
.button-glow {
    display: none;
}

/* Social Links Enhancement */
.social-links {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    color: var(--primary-white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.social-link:hover::before {
    width: 40px;
    height: 40px;
}

/* Enhanced Card Styles */
.tool-card::after,
.benefit-item::after,
.stat-card::after {
    display: none;
}

/* Enhanced Section Titles */
.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    animation: morphing 10s infinite;
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    50% {
        border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;
    }
    75% {
        border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Hero Enhancement */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        var(--accent-glow) 0%,
        transparent 50%
    );
    opacity: 0.1;
    animation: rotate 20s linear infinite;
    z-index: -1;
}

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

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hero::before {
        animation: none;
    }
    
    .section-title::before {
        width: 40px;
        height: 40px;
    }
    
    .social-link:hover::before {
        width: 30px;
        height: 30px;
    }
}

/* 3D Cards */
.tool-card, .benefit-item, .stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transform-style: preserve-3d;
    transform: perspective(1000px) translateZ(0);
    transition: transform 0.3s ease;
    border: none;
}

.tool-card > *, .benefit-item > *, .stat-card > * {
    transform: translateZ(20px);
}

.tool-card h3, .benefit-item h3 {
    transform: translateZ(30px);
}

/* 3D Grid Layouts */
.tools-grid, .benefits-grid, .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Enhanced Background Effects */
.problems::before,
.benefits::before,
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        var(--accent-glow) 0%,
        transparent 70%
    );
    opacity: 0.1;
    transform: translateZ(-50px);
    pointer-events: none;
}

/* Particle Container Optimization */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.5;
    transform: translateZ(-100px);
}

/* Logo Styles */
.logo-container {
    margin-bottom: 2rem;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.main-logo {
    max-width: 200px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--logo-shadow);
    transform: translateZ(50px);
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: translateZ(70px) scale(1.05);
}

.product-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    transform: translateZ(40px);
    transition: transform 0.3s ease;
}

.tool-image {
    text-align: center;
    margin-bottom: 1rem;
}

/* Decorative Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape-1, .shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    opacity: 0.1;
}

.shape-1 {
    top: -50px;
    right: -100px;
    animation: floatShape1 var(--shape-animation-duration) infinite ease-in-out;
}

.shape-2 {
    bottom: -100px;
    left: -150px;
    animation: floatShape2 var(--shape-animation-duration) infinite ease-in-out;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, 25px) rotate(90deg); }
    50% { transform: translate(25px, 50px) rotate(180deg); }
    75% { transform: translate(-25px, 25px) rotate(270deg); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-50px, -25px) rotate(-90deg); }
    50% { transform: translate(-25px, -50px) rotate(-180deg); }
    75% { transform: translate(25px, -25px) rotate(-270deg); }
}

/* Enhanced Section Backgrounds */
.problems::after,
.benefits::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366F1' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .main-logo {
        max-width: 150px;
    }

    .product-logo {
        max-width: 200px;
    }

    .shape-1, .shape-2 {
        width: 200px;
        height: 200px;
    }

    .hero-shapes {
        display: none;
    }
}

/* Decorative Grid */
.decorative-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--luxury-pattern) 1px, transparent 1px),
                      linear-gradient(90deg, var(--luxury-pattern) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.1;
    animation: floatAnimation 20s infinite linear;
}

.shape-circle {
    fill: none;
    stroke: var(--luxury-gold);
    stroke-width: 2;
}

.shape-square {
    fill: none;
    stroke: var(--luxury-silver);
    stroke-width: 2;
    transform-origin: center;
    animation: rotateAnimation 30s infinite linear;
}

.shape-triangle {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 2;
}

/* Geometric Overlay */
.geometric-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, var(--luxury-pattern) 12%, transparent 12.5%, transparent 87%, var(--luxury-pattern) 87.5%, var(--luxury-pattern)),
        linear-gradient(150deg, var(--luxury-pattern) 12%, transparent 12.5%, transparent 87%, var(--luxury-pattern) 87.5%, var(--luxury-pattern)),
        linear-gradient(30deg, var(--luxury-pattern) 12%, transparent 12.5%, transparent 87%, var(--luxury-pattern) 87.5%, var(--luxury-pattern)),
        linear-gradient(150deg, var(--luxury-pattern) 12%, transparent 12.5%, transparent 87%, var(--luxury-pattern) 87.5%, var(--luxury-pattern)),
        linear-gradient(60deg, var(--luxury-pattern) 25%, transparent 25.5%, transparent 75%, var(--luxury-pattern) 75%, var(--luxury-pattern)),
        linear-gradient(60deg, var(--luxury-pattern) 25%, transparent 25.5%, transparent 75%, var(--luxury-pattern) 75%, var(--luxury-pattern));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    opacity: 0.1;
}

/* Section Patterns */
.luxury-pattern,
.tools-pattern,
.benefits-pattern,
.results-pattern,
.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.05;
}

.luxury-pattern {
    background-image: radial-gradient(circle at 50% 50%, var(--luxury-gold) 1px, transparent 1px);
    background-size: 30px 30px;
}

.tools-pattern {
    background-image: 
        linear-gradient(45deg, var(--luxury-silver) 25%, transparent 25%),
        linear-gradient(-45deg, var(--luxury-silver) 25%, transparent 25%);
    background-size: 60px 60px;
}

.benefits-pattern {
    background: repeating-linear-gradient(
        45deg,
        var(--luxury-pattern),
        var(--luxury-pattern) 10px,
        transparent 10px,
        transparent 20px
    );
}

/* Glowing Orbs */
.glowing-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle at center, var(--accent-color) 0%, transparent 70%);
    opacity: 0.3;
    animation: orbFloat 15s infinite ease-in-out;
}

.orb-1 { top: 20%; left: 10%; animation-delay: 0s; }
.orb-2 { top: 50%; right: 15%; animation-delay: -5s; }
.orb-3 { bottom: 20%; left: 50%; animation-delay: -10s; }

/* Floating Numbers */
.floating-numbers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.number-particle {
    position: absolute;
    font-size: 2rem;
    color: var(--luxury-gold);
    opacity: 0.2;
    animation: numberFloat 20s infinite linear;
}

/* Light Beams */
.light-beams {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.beam {
    position: absolute;
    width: 200%;
    height: 200px;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
    transform: rotate(-45deg);
    animation: beamMove 10s infinite linear;
}

.beam-1 { top: -50%; left: -100%; animation-delay: 0s; }
.beam-2 { top: 20%; left: -100%; animation-delay: -3s; }
.beam-3 { top: 90%; left: -100%; animation-delay: -6s; }

/* Animations */
@keyframes floatAnimation {
    0% { transform: translate(0, 0); }
    25% { transform: translate(30px, -30px); }
    50% { transform: translate(0, -60px); }
    75% { transform: translate(-30px, -30px); }
    100% { transform: translate(0, 0); }
}

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

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

@keyframes numberFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.2; }
    90% { opacity: 0.2; }
    100% { transform: translateY(-1000%) rotate(360deg); opacity: 0; }
}

@keyframes beamMove {
    0% { transform: translateX(-100%) rotate(-45deg); }
    100% { transform: translateX(100%) rotate(-45deg); }
}

/* Enhanced Card Styles */
.tool-card, .benefit-item, .stat-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05)
    );
}

.tool-card::before,
.benefit-item::before,
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.tool-card:hover::before,
.benefit-item:hover::before,
.stat-card:hover::before {
    transform: translateX(100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-shapes,
    .geometric-overlay,
    .glowing-orbs,
    .light-beams {
        display: none;
    }
    
    .luxury-pattern,
    .tools-pattern,
    .benefits-pattern,
    .results-pattern,
    .cta-pattern {
        opacity: 0.03;
    }
}

.logo-container a {
    display: inline-block;
    text-decoration: none;
}

.logo-container a:hover {
    transform: translateY(-3px);
}

/* Navbar Styles */
.navbar {
    background: var(--primary-black);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.nav-title {
    color: var(--primary-white);
    font-size: 1.5rem;
    margin: 0;
}

/* Tools Showcase Section */
.tools-showcase {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.tools-showcase .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: 1rem;
    text-align: center;
}

.tools-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.tool-category {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.tool-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.category-header i {
    font-size: 2rem;
    color: var(--accent-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(124, 58, 237, 0.1));
    padding: 1rem;
    border-radius: 16px;
}

.category-header h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 0;
}

.tools-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tool-item {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.05);
    position: relative;
    overflow: hidden;
}

.tool-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(124, 58, 237, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
    border-color: var(--accent-color);
}

.tool-item:hover::before {
    opacity: 1;
}

.tool-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.tool-item:hover i {
    transform: scale(1.1);
}

.tool-item h4 {
    font-size: 1.2rem;
    color: var(--primary-black);
    margin: 0 0 0.5rem 0;
    position: relative;
}

.tool-item p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
    position: relative;
}

/* Responsive Design for Tools Showcase */
@media (max-width: 768px) {
    .tools-showcase {
        padding: 3rem 0;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .category-header i {
        font-size: 1.5rem;
        padding: 0.75rem;
    }

    .category-header h3 {
        font-size: 1.5rem;
    }

    .tools-list {
        grid-template-columns: 1fr;
    }

    .tool-item {
        text-align: center;
    }
} 