/* =============================================
   ScriptifyZone - Complete Stylesheet
   ============================================= */

:root {
    /* Light Theme Colors */
    --primary: #6c5ce7;
    --primary-dark: #5a4bd1;
    --secondary: #a855f7;
    --accent: #f97316;
    --accent-hover: #ea580c;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;

    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-navbar: rgba(255, 255, 255, 0.95);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-inverse: #ffffff;

    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --gradient-primary: linear-gradient(135deg, #6c5ce7, #a855f7);
    --gradient-accent: linear-gradient(135deg, #f97316, #ef4444);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --navbar-height: 72px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
input, select, textarea, button { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 600; cursor: pointer;
    border: 2px solid transparent; transition: all 0.3s;
    text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(108,92,231,0.3); }
.btn-outline { background: transparent; color: var(--text-primary); border-color: var(--border-color); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: 6px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }
.gradient-btn {
    background: var(--gradient-primary);
    border-color: transparent;
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}
.gradient-btn:hover { background: var(--gradient-primary); box-shadow: 0 8px 30px rgba(108,92,231,0.4); }
.pulse-animation { animation: pulseGlow 2s infinite; }

@keyframes gradientShift {
    0%,100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes pulseGlow {
    0%,100% { box-shadow: 0 0 0 0 rgba(108,92,231,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(108,92,231,0); }
}

/* ===== ALERTS ===== */
.alert { padding: 14px 20px; border-radius: var(--radius-sm); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; font-size: 14px; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: var(--bg-navbar);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    height: var(--navbar-height);
    transition: all 0.3s;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.navbar-brand { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; }
.brand-icon { width: 40px; height: 40px; background: var(--gradient-primary); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; }
.brand-text { color: var(--text-primary); }
.brand-highlight { color: var(--primary); }

.navbar-menu { display: flex; align-items: center; gap: 5px; }
.navbar-menu > li > a {
    padding: 8px 16px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 500; color: var(--text-secondary);
    transition: all 0.3s; display: flex; align-items: center; gap: 6px;
}
.navbar-menu > li > a:hover, .navbar-menu > li > a.active { color: var(--primary); background: rgba(108,92,231,0.1); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.3s; z-index: 100; padding: 8px;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
    padding: 10px 14px; display: flex; align-items: center; gap: 10px;
    border-radius: var(--radius-sm); transition: all 0.2s;
    font-size: 14px; color: var(--text-secondary);
}
.dropdown-menu li a:hover { background: rgba(108,92,231,0.1); color: var(--primary); }
.dropdown-menu-right { left: auto; right: 0; }

.navbar-actions { display: flex; align-items: center; gap: 12px; }

/* Theme Toggle */
.theme-toggle {
    width: 44px; height: 44px; border-radius: var(--radius-full);
    border: 1px solid var(--border-color); background: var(--bg-card);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 18px; transition: all 0.3s; position: relative;
}
.theme-toggle .fa-sun { display: none; }
.theme-toggle .fa-moon { display: block; color: #6c5ce7; }
.theme-toggle:hover { border-color: var(--primary); box-shadow: 0 0 20px rgba(108,92,231,0.2); }

/* User Dropdown */
.btn-user {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 14px 6px 6px; border-radius: var(--radius-full);
    border: 1px solid var(--border-color); background: var(--bg-card);
    cursor: pointer; transition: all 0.3s; font-size: 14px; color: var(--text-primary);
}
.btn-user img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.btn-user:hover { border-color: var(--primary); }

.user-dropdown { position: relative; }
.user-dropdown .dropdown-menu { min-width: 200px; }
.dropdown-divider { border: none; border-top: 1px solid var(--border-color); margin: 4px 0; }

/* ===== HERO SECTION ===== */
.hero {
    padding: 160px 0 100px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, #667eea15 0%, #764ba220 50%, #f9731615 100%);
    min-height: 90vh; display: flex; align-items: center;
}

.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
    position: absolute; border-radius: 50%; opacity: 0.15;
    animation: floatShape 20s infinite ease-in-out;
}
.shape-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -200px; animation-delay: 0s; }
.shape-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; left: -100px; animation-delay: -5s; }
.shape-3 { width: 300px; height: 300px; background: var(--accent); top: 30%; right: 10%; animation-delay: -10s; }
.shape-4 { width: 200px; height: 200px; background: var(--info); top: 20%; left: 15%; animation-delay: -15s; }
.shape-5 { width: 150px; height: 150px; background: var(--success); bottom: 30%; right: 30%; animation-delay: -7s; }

@keyframes floatShape {
    0%,100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(50px, -50px) scale(1.1) rotate(90deg); }
    50% { transform: translate(-20px, 30px) scale(0.95) rotate(180deg); }
    75% { transform: translate(30px, 20px) scale(1.05) rotate(270deg); }
}

.hero-content { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; background: rgba(108,92,231,0.1);
    border: 1px solid rgba(108,92,231,0.2); border-radius: var(--radius-full);
    font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 20px;
}

.hero-title {
    font-size: 56px; font-weight: 800; line-height: 1.15;
    background: linear-gradient(135deg, #0f172a 0%, #6c5ce7 50%, #a855f7 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px; color: var(--text-secondary);
    max-width: 600px; margin: 0 auto 40px; line-height: 1.7;
}

.hero-search { margin-bottom: 50px; }
.search-wrapper {
    display: flex; align-items: center; gap: 0;
    background: var(--bg-card); border: 2px solid var(--border-color);
    border-radius: var(--radius-full); padding: 6px;
    box-shadow: var(--shadow-lg); max-width: 700px; margin: 0 auto;
    transition: all 0.3s;
}
.search-wrapper:focus-within { border-color: var(--primary); box-shadow: 0 0 30px rgba(108,92,231,0.15); }
.search-icon { color: var(--text-muted); font-size: 18px; padding: 0 12px 0 16px; }
.search-wrapper input {
    flex: 1; border: none; outline: none; padding: 12px 8px;
    font-size: 15px; background: transparent; color: var(--text-primary);
}
.search-wrapper select {
    border: none; outline: none; padding: 12px 16px;
    background: var(--bg-tertiary); color: var(--text-secondary);
    font-size: 14px; border-radius: var(--radius-full); cursor: pointer;
    margin: 0 8px;
}
.search-wrapper .btn { border-radius: var(--radius-full); padding: 12px 28px; }

.hero-stats { display: flex; justify-content: center; gap: 50px; }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 28px; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 14px; color: var(--text-muted); }

/* ===== SECTIONS GENERAL ===== */
.section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
    display: inline-block; padding: 6px 16px; background: rgba(108,92,231,0.1);
    border-radius: var(--radius-full); font-size: 12px; font-weight: 600;
    color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.section-header h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.section-header p { color: var(--text-secondary); max-width: 500px; margin: 0 auto; }
.gradient-text { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== CATEGORIES ===== */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.category-card {
    padding: 30px; border-radius: var(--radius-lg); background: var(--bg-card);
    border: 1px solid var(--border-color); transition: all 0.4s;
    position: relative; overflow: hidden;
}
.category-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: var(--cat-color); transition: all 0.3s;
}
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.category-card:hover::before { width: 100%; opacity: 0.08; }
.category-icon {
    width: 60px; height: 60px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--cat-color)20, var(--cat-color)40);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--cat-color); margin-bottom: 16px;
}
.category-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.category-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.category-link { font-size: 13px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 6px; }

/* ===== SCRIPTS GRID ===== */
.scripts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.script-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: all 0.4s;
}
.script-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.script-thumbnail {
    position: relative; height: 200px; overflow: hidden;
    background: var(--bg-tertiary);
}
.script-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: all 0.5s; }
.script-card:hover .script-thumbnail img { transform: scale(1.1); }
.script-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: all 0.3s;
}
.script-card:hover .script-overlay { opacity: 1; }
.script-badge {
    position: absolute; top: 12px; padding: 4px 12px; border-radius: var(--radius-full);
    font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.featured-badge { left: 12px; background: var(--warning); color: #fff; }
.free-badge { right: 12px; background: var(--success); color: #fff; }
.sale-badge { right: 12px; background: var(--danger); color: #fff; }

.script-info { padding: 20px; }
.script-category { font-size: 12px; font-weight: 600; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.script-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.script-info h3 a { transition: color 0.3s; }
.script-info h3 a:hover { color: var(--primary); }
.script-info p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.5; }
.script-meta { display: flex; gap: 16px; margin-bottom: 14px; }
.script-meta span { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.script-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--border-color); }
.script-price { display: flex; align-items: center; gap: 8px; }
.old-price { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.current-price { font-size: 18px; font-weight: 800; color: var(--primary); }
.current-price.free { color: var(--success); }
.script-version { font-size: 12px; color: var(--text-muted); }

/* ===== HOW IT WORKS ===== */
.steps-container { display: flex; align-items: center; justify-content: center; gap: 0; }
.step-card {
    text-align: center; padding: 40px 30px; background: var(--bg-card);
    border: 1px solid var(--border-color); border-radius: var(--radius-lg);
    position: relative; transition: all 0.3s; flex: 1; max-width: 300px;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.step-number {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--gradient-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; margin: 0 auto 16px;
}
.step-icon { font-size: 40px; color: var(--primary); margin-bottom: 16px; }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-muted); }
.step-connector {
    font-size: 28px; color: var(--primary); padding: 0 20px;
    opacity: 0.5;
}

/* ===== STATS BANNER ===== */
.stats-banner {
    background: var(--gradient-primary);
    padding: 60px 0; position: relative; overflow: hidden;
}
.stats-banner::before {
    content: ''; position: absolute; inset: 0;
    background: 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.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 1; }
.stats-card { text-align: center; color: #fff; }
.stats-card i { font-size: 36px; margin-bottom: 12px; opacity: 0.9; }
.stats-number { display: block; font-size: 36px; font-weight: 800; margin-bottom: 4px; }
.stats-label { font-size: 14px; opacity: 0.85; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    padding: 30px; background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--warning); margin-bottom: 16px; font-size: 14px; }
.testimonial-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; }
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0; }
.cta-content {
    text-align: center; padding: 60px; border-radius: var(--radius-xl);
    background: var(--gradient-primary); position: relative; overflow: hidden;
}
.cta-content::before {
    content: ''; position: absolute; inset: 0;
    background: 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.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content h2 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 12px; position: relative; }
.cta-content p { font-size: 16px; color: rgba(255,255,255,0.9); margin-bottom: 30px; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; position: relative; }
.cta-buttons .btn-outline { border-color: rgba(255,255,255,0.3); color: #fff; }
.cta-buttons .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary); border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; margin-bottom: 16px; }
.footer-brand i { width: 36px; height: 36px; background: var(--gradient-primary); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; }
.footer-brand span span { color: var(--primary); }
.footer-col p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%; background: var(--bg-tertiary);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); transition: all 0.3s; font-size: 14px;
}
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

.footer-col h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-secondary); transition: all 0.3s; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
.contact-info li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.contact-info li i { color: var(--primary); width: 16px; }

.footer-bottom {
    border-top: 1px solid var(--border-color); padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.payment-methods { display: flex; gap: 12px; font-size: 24px; color: var(--text-muted); }

/* ===== EMPTY STATE ===== */
.empty-state {
    grid-column: 1 / -1; text-align: center; padding: 60px;
    background: var(--bg-card); border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
}
.empty-state i { font-size: 48px; color: var(--text-muted); margin-bottom: 16px; }
.empty-state h3 { font-size: 20px; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title { font-size: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-container { flex-direction: column; gap: 20px; }
    .step-connector { transform: rotate(90deg); }
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex; flex-direction: column; gap: 5px; cursor: pointer;
        padding: 8px; border-radius: var(--radius-sm); border: 1px solid var(--border-color);
    }
    .navbar-toggle span { width: 24px; height: 2px; background: var(--text-primary); transition: all 0.3s; }
    .navbar-menu { display: none; position: absolute; top: var(--navbar-height); left: 0; width: 100%; background: var(--bg-card); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--border-color); box-shadow: var(--shadow-lg); }
    .navbar-menu.active { display: flex; }
    .navbar-actions .btn-outline, .navbar-actions .btn-primary { display: none; }
    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 16px; }
    .search-wrapper { flex-direction: column; border-radius: var(--radius-md); padding: 12px; }
    .search-wrapper select { width: 100%; margin: 8px 0; }
    .search-wrapper .btn { width: 100%; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .categories-grid { grid-template-columns: 1fr 1fr; }
    .scripts-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-content { padding: 40px 20px; }
    .cta-buttons { flex-direction: column; }
}