/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #0a0a0a;
}

.pt-3 {
    padding-top: 3rem;
}

.pt-2-point-3 {
    padding-top: 2.3rem;
}

.pt-2 {
    padding-top: 2rem;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.beta-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

a {
    text-decoration: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #667eea;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 70%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: 20%;
    left: -10%;
    animation-delay: -2s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #764ba2, #f093fb);
    top: 60%;
    right: -5%;
    animation-delay: -4s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: 20%;
    left: 60%;
    animation-delay: -6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.primary-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.user-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    margin-left: -8px;
    /* border: 2px solid #0a0a0a; */
}

.avatar-count {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 600;
    margin-left: -8px;
    /* border: 2px solid #0a0a0a; */
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.mockup-container {
    position: relative;
    perspective: 1000px;
}

.mockup-screen {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem;
    backdrop-filter: blur(20px);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: all 0.3s ease;
}

.mockup-screen:hover {
    transform: rotateY(-5deg) rotateX(2deg);
}

.mockup-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.mockup-tabs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.tab {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.tab-add {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.mockup-content {
    height: 200px;
    display: flex;
    align-items: flex-end;
}

.chat-bubble {
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.3);
    padding: 1rem;
    border-radius: 12px;
    width: 100%;
}

.typing-animation {
    display: flex;
    gap: 4px;
}

.typing-animation span {
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-animation span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-animation span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -20%;
    animation-delay: -1s;
}

.card-2 {
    top: 50%;
    right: -25%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 20%;
    left: -15%;
    animation-delay: -3s;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: #0a0a0a;
    position: relative;
}

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

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0 0.2rem;
}

.period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.check-icon {
    color: #667eea;
    font-weight: bold;
    width: 16px;
    height: 16px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.pricing-button {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.pricing-button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pricing-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.pricing-button.secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Savings Section - Enhanced Responsive Design */
.savings-section {
    padding: 8rem 0;
    /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%); */
    position: relative;
    overflow: hidden;
}

.current-cost {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
}

.pain-points,
.benefits {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pain-points p,
.benefits p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.4;
}

.benefits p {
    color: #28a745;
    font-weight: 500;
}

.savings-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%); */
    pointer-events: none;
}

.savings-section .container {
    position: relative;
    z-index: 2;
}

.savings-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.savings-section .section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.savings-section .section-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.savings-price {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Responsive Grid Layout */
.savings-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

@media (min-width: 768px) {
    .savings-comparison {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Enhanced Comparison Cards */
.comparison-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
}

.comparison-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.comparison-card.without-ai {
    background: linear-gradient(135deg, rgba(245, 87, 108, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
    border-color: rgba(245, 87, 108, 0.3);
}

.comparison-card.without-ai:hover {
    border-color: rgba(245, 87, 108, 0.5);
    box-shadow: 0 20px 40px rgba(245, 87, 108, 0.1);
}

.comparison-card.with-ai {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border-color: rgba(40, 167, 69, 0.3);
}

.comparison-card.with-ai:hover {
    border-color: rgba(40, 167, 69, 0.5);
    box-shadow: 0 20px 40px rgba(40, 167, 69, 0.1);
}

/* Card Headers */
.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}

.card-header svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
}

.comparison-card.without-ai .card-header h3 {
    color: #f093fb;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-card.with-ai .card-header h3 {
    color: #28a745;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Content */
.comparison-card > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* Enhanced Service Lists */
.service-list {
    list-style: none;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-list li:hover {
    background: rgba(255, 255, 255, 0.02);
    margin: 0 -1rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    border-radius: 8px;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list.included li {
    position: relative;
    padding-left: 1rem;
}

.service-list.included li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-weight: 700;
    font-size: 1.2rem;
}

.price-value {
    font-weight: 600;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Enhanced Pricing Sections */
.total-cost,
.allinone-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding: 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.total-cost {
    background: rgba(245, 87, 108, 0.1);
    border: 1px solid rgba(245, 87, 108, 0.2);
    color: #f093fb;
}

.allinone-price {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.total-cost span:first-child,
.allinone-price span:first-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.amount {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Disclaimer and Included Tools */
.disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6) !important;
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.included-tools {
    text-align: center;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

/* Enhanced CTA Button */
.allinone-card .cta-button {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-top: 1rem;
}

.allinone-card .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

/* Enhanced Savings Summary */
.savings-summary {
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.savings-summary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.savings-summary h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.savings-summary p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.savings-summary .amount {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .savings-section {
        padding: 4rem 0;
    }
    
    .savings-section .section-header h2 {
        font-size: 2.5rem;
    }
    
    .savings-section .section-header p {
        font-size: 1.1rem;
    }
    
    .savings-comparison {
        gap: 2rem;
    }
    
    .comparison-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .comparison-card > p {
        font-size: 1rem;
    }
    
    .service-list li {
        padding: 1rem 0;
        font-size: 0.9rem;
    }
    
    .total-cost,
    .allinone-price {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
    
    .amount {
        font-size: 1.3rem;
    }
    
    .savings-summary {
        padding: 2rem 1.5rem;
    }
    
    .savings-summary h3 {
        font-size: 1.5rem;
    }
    
    .savings-summary p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .comparison-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .service-list li {
        /* flex-direction: column; */
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .price-value {
        align-self: flex-end;
    }
    
    .total-cost,
    .allinone-price {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

.allinone-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: rgba(102, 126, 234, 0.3);
}

.service-list.included li {
    justify-content: flex-start;
    gap: 0.5rem;
}

.service-list.included li::before {
    content: '✓';
    color: #667eea;
    font-weight: 700;
}

.allinone-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.included-tools {
    text-align: center;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 2rem !important;
}

.savings-section .section-header h2 {
    font-size: 2.8rem;
}

.savings-section .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.comparison-card.without-ai {
    background-color: rgba(255, 229, 229, 0.05);
    border: 1px solid rgba(245, 87, 108, 0.3);
}

.comparison-card.with-ai {
    background-color: rgba(229, 255, 229, 0.05);
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.comparison-card.without-ai .card-header h3 {
    color: #F5576C;
}

.comparison-card.with-ai .card-header h3 {
    color: #28a745;
}

.service-list.included li {
    justify-content: space-between;
}

.service-list.included li::before {
    content: none;
}

.service-list.included li::after {
    content: '✓';
    color: #28a745;
    font-weight: 700;
}

.total-cost .amount {
    color: #F5576C;
}

.allinone-price .amount {
    color: #28a745;
}

.allinone-card .cta-button {
    background: #007bff;
    border: none;
}

.allinone-card .cta-button:hover {
    background: #0056b3;
}

.savings-summary h3 {
    font-size: 1.5rem;
}

.savings-summary p {
    font-size: 1rem;
}

.savings-summary {
    text-align: center;
    margin-top: 3rem;
}

.savings-summary h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.savings-summary p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.savings-summary .amount {
    color: #667eea;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #667eea;
}

.testimonial-author span {
    color: white;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #0a0a0a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-orb-1 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: 50%;
    left: -8%;
    animation-delay: -1s;
}

.cta-orb-2 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #764ba2, #f093fb);
    top: 70%;
    right: -6%;
    animation-delay: -3s;
}

.cta-orb-3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f093fb, #667eea);
    bottom: 15%;
    left: 70%;
    animation-delay: -5s;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.primary-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.primary-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.secondary-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.feature-dot.green {
    background-color: #10b981;
}

.feature-dot.blue {
    background-color: #3b82f6;
}

.feature-dot.purple {
    background-color: #8b5cf6;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #667eea;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Page Styles */
.page {
    min-height: 100dvh;
    background: #0a0a0a;
    padding-top: 80px;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.page-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.page-text h2 {
    color: white;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.page-text h3 {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    color: white;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 0rem;
        min-width: 190px;
        max-width: 300px;
        display: none;
        position: absolute;
        top: 100%;
        /* left: 0; */
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 0.5rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .nav-links a:last-child {
        border-bottom: none;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        margin-top: 10px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-header h2 {
        font-size: 2rem;
    }

    .amount {
        font-size: 2.5rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .container,
    .nav {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Particle Background System */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, rgba(59, 130, 246, 0.2) 50%, transparent 100%);
    border-radius: 50%;
    animation: particleFloat 20s infinite linear;
    filter: blur(1px);
}

/* Individual Particle Styles */
.particle-1 {
    width: 4px;
    height: 4px;
    top: 10%;
    left: 5%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 20%;
    left: 15%;
    animation-duration: 30s;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.8) 0%, rgba(16, 185, 129, 0.2) 50%, transparent 100%);
}

.particle-3 {
    width: 3px;
    height: 3px;
    top: 35%;
    left: 25%;
    animation-duration: 22s;
    animation-delay: 4s;
}

.particle-4 {
    width: 8px;
    height: 8px;
    top: 45%;
    left: 35%;
    animation-duration: 28s;
    animation-delay: 1s;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.8) 0%, rgba(139, 92, 246, 0.2) 50%, transparent 100%);
}

.particle-5 {
    width: 5px;
    height: 5px;
    top: 60%;
    left: 45%;
    animation-duration: 26s;
    animation-delay: 3s;
}

.particle-6 {
    width: 7px;
    height: 7px;
    top: 75%;
    left: 55%;
    animation-duration: 24s;
    animation-delay: 5s;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.8) 0%, rgba(16, 185, 129, 0.2) 50%, transparent 100%);
}

.particle-7 {
    width: 4px;
    height: 4px;
    top: 85%;
    left: 65%;
    animation-duration: 32s;
    animation-delay: 2.5s;
}

.particle-8 {
    width: 6px;
    height: 6px;
    top: 15%;
    left: 75%;
    animation-duration: 27s;
    animation-delay: 4.5s;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.8) 0%, rgba(139, 92, 246, 0.2) 50%, transparent 100%);
}

.particle-9 {
    width: 3px;
    height: 3px;
    top: 30%;
    left: 85%;
    animation-duration: 29s;
    animation-delay: 1.5s;
}

.particle-10 {
    width: 5px;
    height: 5px;
    top: 50%;
    left: 95%;
    animation-duration: 23s;
    animation-delay: 3.5s;
}

.particle-11 {
    width: 4px;
    height: 4px;
    top: 5%;
    left: 80%;
    animation-duration: 31s;
    animation-delay: 0.5s;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.8) 0%, rgba(16, 185, 129, 0.2) 50%, transparent 100%);
}

.particle-12 {
    width: 7px;
    height: 7px;
    top: 25%;
    left: 70%;
    animation-duration: 25s;
    animation-delay: 2.8s;
}

.particle-13 {
    width: 3px;
    height: 3px;
    top: 40%;
    left: 10%;
    animation-duration: 28s;
    animation-delay: 4.2s;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.8) 0%, rgba(139, 92, 246, 0.2) 50%, transparent 100%);
}

.particle-14 {
    width: 6px;
    height: 6px;
    top: 65%;
    left: 20%;
    animation-duration: 26s;
    animation-delay: 1.8s;
}

.particle-15 {
    width: 4px;
    height: 4px;
    top: 80%;
    left: 30%;
    animation-duration: 30s;
    animation-delay: 3.2s;
}

.particle-16 {
    width: 5px;
    height: 5px;
    top: 90%;
    left: 40%;
    animation-duration: 24s;
    animation-delay: 0.8s;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.8) 0%, rgba(16, 185, 129, 0.2) 50%, transparent 100%);
}

.particle-17 {
    width: 8px;
    height: 8px;
    top: 12%;
    left: 50%;
    animation-duration: 27s;
    animation-delay: 4.8s;
}

.particle-18 {
    width: 3px;
    height: 3px;
    top: 28%;
    left: 60%;
    animation-duration: 29s;
    animation-delay: 2.2s;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.8) 0%, rgba(139, 92, 246, 0.2) 50%, transparent 100%);
}

.particle-19 {
    width: 6px;
    height: 6px;
    top: 55%;
    left: 8%;
    animation-duration: 25s;
    animation-delay: 3.8s;
}

.particle-20 {
    width: 4px;
    height: 4px;
    top: 70%;
    left: 90%;
    animation-duration: 32s;
    animation-delay: 1.2s;
}

/* Starfield Background */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    animation: twinkle 4s ease-in-out infinite alternate;
}

.stars-small {
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.2), transparent);
    background-size: 200px 100px;
    animation-duration: 6s;
}

.stars-medium {
    background-image:
        radial-gradient(3px 3px at 60px 50px, rgba(59, 130, 246, 0.4), transparent),
        radial-gradient(3px 3px at 120px 90px, rgba(16, 185, 129, 0.3), transparent),
        radial-gradient(2px 2px at 180px 20px, rgba(139, 92, 246, 0.4), transparent);
    background-size: 250px 150px;
    animation-duration: 8s;
    animation-delay: 1s;
}

.stars-large {
    background-image:
        radial-gradient(4px 4px at 100px 60px, rgba(59, 130, 246, 0.6), transparent),
        radial-gradient(4px 4px at 200px 100px, rgba(16, 185, 129, 0.5), transparent);
    background-size: 300px 200px;
    animation-duration: 10s;
    animation-delay: 2s;
}

/* Particle Animations */
@keyframes particleFloat {
    0% {
        transform: translateY(100dvh) translateX(0px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

/* Cursor Trail Particles */
.cursor-trail-particle {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    animation: cursorTrailFloat 0.8s ease-out forwards;
}

/* Cursor interaction enhancements */
.particle {
    transition: transform 0.3s ease-out, filter 0.3s ease-out, box-shadow 0.3s ease-out;
    will-change: transform, filter;
}

.particle:hover {
    transform: scale(1.5) !important;
    filter: blur(0px) brightness(2) !important;
    box-shadow: 0 0 20px currentColor;
}

/* Enhanced particle glow effects */
.particle-1,
.particle-3,
.particle-5,
.particle-7,
.particle-9,
.particle-12,
.particle-15,
.particle-17,
.particle-19 {
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.particle-2,
.particle-6,
.particle-11,
.particle-16 {
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.particle-4,
.particle-8,
.particle-13,
.particle-18 {
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* Cursor trail animation */
@keyframes cursorTrailFloat {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3) translateY(-20px);
    }
}

/* Interactive element particle attraction effects */
button:hover~.particles-container .particle,
.cta-button:hover~.particles-container .particle,
.nav-links a:hover~.particles-container .particle,
.pricing-card:hover .particle {
    animation-play-state: paused;
}

/* Smooth cursor interactions */
@media (hover: hover) {
    .particle {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .particle.cursor-repelled {
        transform: scale(1.3);
        filter: blur(0px) brightness(1.8);
        box-shadow: 0 0 15px currentColor;
    }

    .particle.cursor-attracted {
        transform: scale(1.2);
        filter: blur(0px) brightness(1.5);
        box-shadow: 0 0 12px currentColor;
    }
}

/* Performance optimizations for cursor effects */
.particles-container {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.particle {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}