/* ==========================================================================
   1. ENHANCED BACKGROUND & ANIMATIONS
   ========================================================================== */

/* Pulsing animations for background orbs */
@keyframes pulse-slow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

@keyframes pulse-slow-delayed {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.4;
    }
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes border-shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-pulse-slow {
    animation: pulse-slow 8s ease-in-out infinite;
}

.animate-pulse-slow-delayed {
    animation: pulse-slow-delayed 10s ease-in-out infinite;
}

/* ==========================================================================
   2. DESIGN SYSTEM
   ========================================================================== */
:root {
    --bg-main: #0B0F17;
    --bg-card: rgba(19, 27, 42, 0.85);
    --bg-card-hover: rgba(30, 42, 62, 0.95);
    --bg-nav: rgba(6, 8, 13, 0.92);
    --bg-modal: #0d121c;
    
    --brand-emerald: #10B981;
    --brand-emerald-dark: #059669;
    --brand-emerald-light: #34D399;
    --brand-crimson: #DC2626;
    --brand-crimson-dark: #B91C1C;
    --brand-white: #FFFFFF;
    --text-muted: #94a3b8;
    --text-light: #e2e8f0;
    
    --border-color: rgba(255, 255, 255, 0.06);
    --border-highlight: rgba(16, 185, 129, 0.3);
    --gradient-emerald: linear-gradient(135deg, #10B981 0%, #34D399 40%, #059669 80%, #10B981 100%);
    --gradient-crimson: linear-gradient(135deg, #DC2626 0%, #EF4444 40%, #B91C1C 80%, #DC2626 100%);
    
    --font-title: 'Monoton', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --container-max: 1280px;
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow-emerald: 0 0 40px rgba(16, 185, 129, 0.15);
    --shadow-glow-crimson: 0 0 40px rgba(220, 38, 38, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ==========================================================================
   3. BACKGROUND LAYERS
   ========================================================================== */

/* Base background gradient */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(220, 38, 38, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #0B0F17 0%, #0F1320 50%, #0B0F17 100%);
    z-index: -2;
    pointer-events: none;
}

/* Texture overlay */
body::after {
    content: "";
    position: fixed;
    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='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v2H24v-2h12zM36 24v2H24v-2h12z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

/* ==========================================================================
   4. GLASS & CARD EFFECTS
   ========================================================================== */

.glass {
    background: rgba(19, 27, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(220, 38, 38, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass:hover::before {
    opacity: 1;
}

.glass:hover {
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Enhanced glass with border glow */
.glass-enhanced {
    background: rgba(19, 27, 42, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Border gradient for cards */
.glass-border-gradient {
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.glass-border-gradient::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(220, 38, 38, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Glow backgrounds */
.glow-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    pointer-events: none;
    z-index: 0;
}

.glow-bg-emerald {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
}

.glow-bg-crimson {
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
}

/* ==========================================================================
   5. TYPOGRAPHY & TEXT EFFECTS
   ========================================================================== */

.text-gradient-emerald {
    background: var(--gradient-emerald);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s ease-in-out infinite;
}

.text-gradient-crimson {
    background: var(--gradient-crimson);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s ease-in-out infinite;
}

.glow-text {
    text-shadow: 0 0 40px rgba(16, 185, 129, 0.1);
}

.text-brand-emerald {
    color: var(--brand-emerald);
}

.text-brand-crimson {
    color: var(--brand-crimson);
}

.bg-brand-emerald {
    background-color: var(--brand-emerald);
}

.bg-brand-crimson {
    background-color: var(--brand-crimson);
}

.border-brand-emerald {
    border-color: var(--brand-emerald);
}

.border-brand-crimson {
    border-color: var(--brand-crimson);
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-emerald {
    background: var(--brand-emerald);
    color: #fff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
}

.btn-emerald:hover {
    background: var(--brand-emerald-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.btn-crimson {
    background: var(--brand-crimson);
    color: #fff;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.25);
}

.btn-crimson:hover {
    background: var(--brand-crimson-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--brand-emerald);
    color: var(--brand-emerald);
    transform: translateY(-2px);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: scale(0.5);
}

.btn-glow:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   7. TAGS & BADGES
   ========================================================================== */

.tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--brand-emerald);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.tag-badge-crimson {
    background: rgba(220, 38, 38, 0.1);
    color: var(--brand-crimson);
    border-color: rgba(220, 38, 38, 0.25);
}

/* ==========================================================================
   8. SECTION HEADERS
   ========================================================================== */

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px auto;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    letter-spacing: -0.02em;
    margin: 12px 0 16px 0;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ==========================================================================
   9. NAVIGATION
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 38px;
    width: auto;
}

.logo span {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-emerald);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-emerald);
}

.mobile-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1.3rem;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   10. HERO SECTION
   ========================================================================== */

.hero {
    padding: 160px 0 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(220, 38, 38, 0.06) 0%, transparent 50%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content .tag-badge {
    margin-bottom: 12px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 16px 0 24px 0;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}

/* ==========================================================================
   11. BENTO GRID SERVICES
   ========================================================================== */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-emerald);
    opacity: 0;
    transition: var(--transition);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-highlight);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-glow-emerald);
}

.bento-card.span-2 {
    grid-column: span 2;
}

.bento-card .service-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: inline-block;
}

.bento-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   12. PRICING SECTION
   ========================================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-emerald), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.pricing-card.featured {
    border: 2px solid transparent;
    background-clip: padding-box;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, var(--bg-card) 100%);
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: var(--gradient-emerald);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: border-shimmer 4s ease-in-out infinite;
}

.pricing-card .popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--brand-emerald);
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.88rem;
    min-height: 42px;
}

.price-upfront {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
}

.price-upfront small {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-mandatory-renewal {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    margin-top: 12px;
    font-size: 0.85rem;
    color: #fca5a5;
    font-weight: 600;
    display: inline-block;
}

.feature-list {
    flex-grow: 1;
    margin: 20px 0 28px 0;
}

.feature-list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li::before {
    content: "✓";
    color: var(--brand-emerald);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-list li.crimson-check::before {
    color: var(--brand-crimson);
}

/* ==========================================================================
   13. BLOG SYSTEM
   ========================================================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.blog-card.expanded {
    grid-column: span 3;
    border-color: var(--brand-emerald);
    box-shadow: var(--shadow-glow-emerald);
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11, 15, 23, 0.8) 100%);
    pointer-events: none;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img {
    transform: scale(1.03);
}

.blog-card .blog-category-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--brand-emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.blog-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.blog-date {
    font-size: 0.78rem;
    color: var(--brand-emerald);
    font-weight: 700;
    text-transform: uppercase;
}

.blog-read-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.blog-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: var(--transition);
}

.blog-content h3:hover {
    color: var(--brand-emerald);
}

.blog-snippet {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.blog-full-article {
    display: none;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px dashed var(--border-color);
    color: var(--text-light);
    font-size: 0.96rem;
    line-height: 1.8;
}

.blog-card.expanded .blog-full-article {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

.blog-full-article h4 {
    font-family: var(--font-display);
    color: var(--brand-emerald);
    font-size: 1.1rem;
    margin: 20px 0 8px 0;
}

.blog-full-article p {
    margin-bottom: 14px;
}

.blog-full-article ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 14px;
    color: var(--text-muted);
}

.blog-toggle-btn {
    align-self: flex-start;
    background: rgba(16, 185, 129, 0.1);
    color: var(--brand-emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-toggle-btn:hover {
    background: var(--brand-emerald);
    color: #fff;
}

/* ==========================================================================
   14. CONTACT SECTION
   ========================================================================== */

.contact-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    backdrop-filter: blur(12px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    box-shadow: var(--shadow-card);
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin: 12px 0 24px 0;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-emerald);
    font-weight: 700;
}

.contact-item p {
    font-size: 1.05rem;
    font-weight: 500;
    margin-top: 2px;
}

.contact-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-muted);
    font-size: 1.1rem;
    text-decoration: none;
}

.contact-social a:hover {
    border-color: var(--brand-emerald);
    color: var(--brand-emerald);
    transform: translateY(-2px);
}

/* ==========================================================================
   15. FORM ELEMENTS
   ========================================================================== */

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-light);
}

.form-control {
    width: 100%;
    background: rgba(6, 8, 13, 0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--brand-emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15), 0 0 20px rgba(16, 185, 129, 0.05);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control.error {
    border-color: var(--brand-crimson);
}

.form-error {
    color: var(--brand-crimson);
    font-size: 0.8rem;
    margin-top: 4px;
    display: none;
}

.form-error.visible {
    display: block;
}

/* ==========================================================================
   16. TOAST NOTIFICATIONS
   ========================================================================== */

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    background: rgba(19, 27, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 400px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.1);
}

.toast.error {
    border-color: rgba(220, 38, 38, 0.3);
    background: rgba(220, 38, 38, 0.1);
}

.toast .toast-title {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-light);
}

.toast.success .toast-title {
    color: var(--brand-emerald);
}

.toast.error .toast-title {
    color: var(--brand-crimson);
}

.toast .toast-message {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   17. MODALS
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-overlay.hidden {
    display: none;
}

.modal-container {
    background: linear-gradient(135deg, rgba(19, 27, 42, 0.95), rgba(11, 15, 23, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 760px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 48px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
}

.modal-close:hover {
    background: var(--brand-crimson);
    border-color: var(--brand-crimson);
}

.modal-container h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--brand-emerald);
}

.modal-container h4 {
    font-size: 1.05rem;
    margin: 24px 0 8px 0;
    color: var(--text-light);
}

.modal-container p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* ==========================================================================
   18. FOOTER
   ========================================================================== */

footer {
    border-top: 1px solid var(--border-color);
    padding: 64px 0 32px 0;
    background: rgba(3, 5, 8, 0.98);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 12px;
    max-width: 350px;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-col p {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--brand-emerald);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-modal-link {
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.footer-modal-link:hover {
    color: var(--brand-emerald);
}

/* ==========================================================================
   19. PROGRESS INDICATOR
   ========================================================================== */

#submitProgress {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    transition: all 0.3s ease;
}

#submitProgress .progress-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 8px;
}

#submitProgress .progress-bar {
    width: 0%;
    height: 100%;
    background: var(--gradient-emerald);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

#submitProgress .progress-status {
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

#submitProgress .progress-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

#submitProgress .progress-header .spinner {
    width: 18px;
    height: 18px;
    border-width: 2px;
    flex-shrink: 0;
}

#submitProgress .progress-text {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

#submitProgress.success {
    border-color: var(--brand-emerald);
    background: rgba(16, 185, 129, 0.08);
}

#submitProgress.error {
    border-color: var(--brand-crimson);
    background: rgba(220, 38, 38, 0.08);
}

/* ==========================================================================
   20. SPINNER
   ========================================================================== */

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--brand-emerald);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.spinner-btn {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* ==========================================================================
   21. FLOATING CTA
   ========================================================================== */

.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    padding: 12px 20px;
    border-radius: 50px;
    background: rgba(19, 27, 42, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.floating-cta:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   22. SCROLLBAR
   ========================================================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0B0F17;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--brand-emerald), var(--brand-emerald-dark));
    border-radius: 5px;
    border: 2px solid #0B0F17;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--brand-emerald-light), var(--brand-emerald));
}

/* ==========================================================================
   23. SELECTION
   ========================================================================== */

::selection {
    background: var(--brand-emerald);
    color: #FFFFFF;
}

/* ==========================================================================
   24. SECTION SCROLL MARGIN
   ========================================================================== */

section {
    scroll-margin-top: 80px;
}

/* ==========================================================================
   25. RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(19, 27, 42, 0.95);
        backdrop-filter: blur(16px);
        border: 1px solid var(--border-color);
        border-radius: 0 0 1.5rem 1.5rem;
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        display: none;
        align-items: stretch;
    }

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

    .nav-links a {
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        text-align: left;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .hero-grid,
    .pricing-grid,
    .blog-grid,
    .contact-box {
        grid-template-columns: 1fr;
    }

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

    .blog-card.expanded {
        grid-column: span 1;
    }

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

    .bento-card.span-2 {
        grid-column: span 1;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

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

    .contact-box {
        padding: 32px;
        gap: 32px;
    }

    .btn-onboard {
        width: 100%;
        text-align: center;
        padding: 12px !important;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 120px 0 60px 0;
    }

    .section-padding {
        padding: 60px 0;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .container {
        padding: 0 16px;
    }

    .modal-container {
        padding: 32px 24px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .floating-cta {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px;
        font-size: 0.75rem;
    }

    .glow-bg {
        display: none;
    }

    .glass {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .pricing-grid {
        gap: 16px;
    }

    .contact-box {
        padding: 20px;
    }

    .logo span {
        font-size: 1.1rem;
    }

    .logo img {
        height: 30px;
    }
}

/* ==========================================================================
   26. UTILITY CLASSES
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.shadow-emerald-glow {
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.15);
}

.shadow-crimson-glow {
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.15);
}

.hover\:bg-emerald-600:hover {
    background-color: var(--brand-emerald-dark);
}

.hover\:bg-crimson-600:hover {
    background-color: var(--brand-crimson-dark);
}

.hover\:border-emerald-500\/30:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.hover\:border-crimson-500\/30:hover {
    border-color: rgba(220, 38, 38, 0.3);
}

.hover\:border-emerald-500\/50:hover {
    border-color: rgba(16, 185, 129, 0.5);
}

.hover\:border-crimson-500\/50:hover {
    border-color: rgba(220, 38, 38, 0.5);
}

/* ==========================================================================
   27. ENHANCED NAVIGATION - MOBILE FRIENDLY
   ========================================================================== */

/* Glass navigation with enhanced contrast */
.glass-nav {
    background: rgba(11, 15, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.glass-nav:hover {
    border-color: rgba(16, 185, 129, 0.15);
}

/* Mobile navigation links */
.mobile-nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(16, 185, 129, 0.08);
    padding-left: 20px;
}

.mobile-nav-link .w-1\.5 {
    transition: all 0.3s ease;
}

.mobile-nav-link:hover .w-1\.5 {
    width: 8px !important;
    height: 8px !important;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

/* Mobile menu animation */
#mobileMenu {
    animation: slideDown 0.3s ease-out;
    transform-origin: top center;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: scaleY(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scaleY(1) translateY(0);
    }
}

/* Mobile toggle button hover */
#mobileToggle {
    transition: all 0.3s ease;
}

#mobileToggle:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

#mobileToggle.active {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

/* Nav link underline animation - enhanced */
.nav-link {
    position: relative;
}

.nav-link .absolute {
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover .absolute {
    width: 100%;
}

.nav-link.active {
    color: #10B981;
}

.nav-link.active .absolute {
    width: 100%;
    background: #10B981;
}

/* Mobile menu backdrop */
#mobileMenu {
    position: relative;
    z-index: 50;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .glass-nav {
        padding: 12px 16px;
    }
}

@media (max-width: 768px) {
    .glass-nav {
        padding: 10px 12px;
        border-radius: 16px;
    }
    
    #mobileMenu {
        margin-top: 8px;
        padding: 16px;
        border-radius: 16px;
    }
    
    .mobile-nav-link {
        font-size: 0.8rem;
        padding: 12px 16px;
    }
}

/* ==========================================================================
   28. ENHANCED CONTRAST - EMERALD & CRIMSON
   ========================================================================== */

/* Emerald glow with higher contrast */
.shadow-emerald-glow {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.15);
}

.shadow-emerald-glow-strong {
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.25);
}

/* Crimson glow with higher contrast */
.shadow-crimson-glow {
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.15);
}

.shadow-crimson-glow-strong {
    box-shadow: 0 0 50px rgba(220, 38, 38, 0.25);
}

/* Text gradient - Emerald with higher contrast */
.text-gradient-emerald {
    background: linear-gradient(135deg, #10B981 0%, #34D399 40%, #059669 80%, #10B981 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s ease-in-out infinite;
}

/* Text gradient - Crimson with higher contrast */
.text-gradient-crimson {
    background: linear-gradient(135deg, #DC2626 0%, #F87171 40%, #991B1B 80%, #DC2626 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s ease-in-out infinite;
}

/* Enhanced border colors */
.border-emerald-500\/30 {
    border-color: rgba(16, 185, 129, 0.3);
}

.border-emerald-500\/40 {
    border-color: rgba(16, 185, 129, 0.4);
}

.border-crimson-500\/30 {
    border-color: rgba(220, 38, 38, 0.3);
}

.border-crimson-500\/40 {
    border-color: rgba(220, 38, 38, 0.4);
}

/* Enhanced hover states */
.hover\:shadow-emerald-glow:hover {
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.2);
}

.hover\:shadow-crimson-glow:hover {
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.2);
}

.hover\:border-emerald-500\/80:hover {
    border-color: rgba(16, 185, 129, 0.8);
}

.hover\:border-crimson-500\/80:hover {
    border-color: rgba(220, 38, 38, 0.8);
}

/* ==========================================================================
   29. TRUST INDICATORS
   ========================================================================== */

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.trust-indicator:hover {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.15);
}

/* ==========================================================================
   30. ENHANCED CARD BORDERS
   ========================================================================== */

.glass-card-border {
    position: relative;
    border: 1px solid transparent;
    background-clip: padding-box;
}

.glass-card-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(220, 38, 38, 0.1));
    -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.4s ease;
}

.glass-card-border:hover::before {
    opacity: 1;
}

/* ==========================================================================
   31. RESPONSIVE ENHANCEMENTS
   ========================================================================== */

@media (max-width: 640px) {
    .text-gradient-emerald,
    .text-gradient-crimson {
        background-size: 150% 150%;
    }
    
    .glass-nav {
        padding: 8px 12px;
        border-radius: 12px;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .logo .w-3 {
        width: 8px;
        height: 8px;
    }
    
    #mobileMenu {
        margin-top: 6px;
        padding: 12px;
        border-radius: 12px;
    }
    
    .mobile-nav-link {
        font-size: 0.75rem;
        padding: 10px 14px;
    }
}

/* ==========================================================================
   32. ADDITIONAL VISUAL ELEMENTS
   ========================================================================== */

/* Floating particles animation */
#particlesContainer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    animation: float-particle 25s infinite linear;
}

.particle:nth-child(odd) {
    background: rgba(220, 38, 38, 0.12);
    animation-duration: 30s;
}

/* Float animation for badge */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Bounce slow for scroll indicator */
@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animate-bounce-slow {
    animation: bounce-slow 2.5s ease-in-out infinite;
}

/* Scroll dot animation */
@keyframes scroll-dot {
    0%, 100% {
        transform: translateY(2px);
        opacity: 1;
    }
    50% {
        transform: translateY(12px);
        opacity: 0.3;
    }
}

.animate-scroll-dot {
    animation: scroll-dot 2s ease-in-out infinite;
}

/* Statistics counter hover effect */
.stat-number {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-number:hover {
    transform: scale(1.15);
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

/* Enhanced trust indicators */
.trust-indicator {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-indicator:hover {
    transform: translateY(-2px);
}

/* Decorative corner accents */
.corner-accent {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(16, 185, 129, 0.15);
    border-radius: 4px;
    opacity: 0.5;
}

/* Glow pulse for cards */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.05);
    }
    50% {
        box-shadow: 0 0 40px rgba(16, 185, 129, 0.15);
    }
}

.glow-pulse {
    animation: glow-pulse 3s ease-in-out infinite;
}

/* Icon hover effects */
.icon-hover {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.icon-hover:hover {
    transform: scale(1.2) rotate(5deg);
}

/* Section divider with gradient */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px 0;
}

.section-divider .line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
}

.section-divider .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-emerald);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

/* Enhanced card decorations */
.card-decoration {
    position: absolute;
    pointer-events: none;
    opacity: 0.05;
    font-size: 6rem;
    transition: all 0.4s ease;
}

.group:hover .card-decoration {
    opacity: 0.1;
    transform: rotate(-10deg) scale(1.1);
}

/* Responsive adjustments for visual elements */
@media (max-width: 768px) {
    .corner-accent {
        display: none;
    }
    
    .particle {
        display: none;
    }
    
    .trust-indicator {
        font-size: 0.6rem;
        padding: 4px 12px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ==========================================================================
   32. PARTICLE STYLES - Mobile Friendly
   ========================================================================== */

/* Particles container - fixed positioning */
.particles-container,
#particlesContainer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

/* Individual particle */
.particle {
    position: absolute !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    will-change: transform, opacity !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
}

/* Mobile-specific styles */
@media (max-width: 767px) {
    .particles-container,
    #particlesContainer {
        opacity: 0.6 !important;
    }
    
    .particle {
        width: 2px !important;
        height: 2px !important;
        animation-duration: 30s !important;
    }
}

/* Tablet-specific styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .particles-container,
    #particlesContainer {
        opacity: 0.8 !important;
    }
    
    .particle {
        width: 3px !important;
        height: 3px !important;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .particles-container,
    #particlesContainer {
        opacity: 1 !important;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .particles-container,
    #particlesContainer {
        display: none !important;
    }
    
    .particle {
        animation: none !important;
        display: none !important;
    }
}
