/* Reset and 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;
}

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

/* Variables */
:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --background-light: #f8fafc;
    --background-dark: #0f172a;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Mobile-first responsive utilities */
@media (max-width: 768px) {
    .mobile-center {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .mobile-padding {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

.highlight {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

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

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-text {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.08);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.12);
    font-weight: 600;
}

.nav-link.cta-btn {
    background: var(--gradient-primary);
    color: white;
    margin-left: 8px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.nav-link.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
    background: var(--gradient-primary);
    color: white;
}

.nav-link.cta-btn.active {
    background: var(--gradient-primary);
    color: white;
}

.nav-link.cta-btn.active::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(99, 102, 241, 0.08);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: var(--primary-color);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    overflow: hidden;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 65%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.bg-circle-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.bg-circle-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-accent);
    bottom: 20%;
    left: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

.bg-circle-3 {
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features {
    background: var(--background-light);
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    color: white;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

.step-card {
    width: calc(50% - 40px);
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid var(--border-color);
    transform: translateY(-50%) rotate(45deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-step:nth-child(odd) .step-card::before {
    right: -10px;
}

.timeline-step:nth-child(even) .step-card::before {
    left: -10px;
}

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

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.cta-section {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-step,
    .timeline-step:nth-child(even) {
        flex-direction: row;
        padding-left: 80px;
    }

    .step-marker {
        left: 30px;
        transform: translateX(-50%);
    }

    .step-card {
        width: 100%;
        margin-left: 20px;
    }

    .step-card::before {
        left: -10px !important;
        right: auto !important;
    }

    .timeline-container {
        padding: 20px 0;
    }

    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .cta-section {
        margin-top: 40px;
        padding: 30px 20px;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }
}

/* Team Section */
.team {
    background: var(--background-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-items: center;
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(99, 102, 241, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
}

.team-info {
    padding: 30px 20px;
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.team-role {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Download Section */
.download {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.download-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.download-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: var(--background-light);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 5px;
    color: var(--text-primary);
}

.contact-details p a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details p a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footergrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23334155" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23footergrid)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(1.2);
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-title {
    margin-bottom: 25px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    text-align: center;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer .social-media-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.footer .social-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #cbd5e1;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #334155;
    font-size: 1.1rem;
    flex-shrink: 0;
    min-width: 40px;
}

.footer .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.footer .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
    color: white;
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.4);
}

.footer .social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

.footer .social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.footer .social-link.discord:hover {
    background: #5865f2;
    border-color: #5865f2;
    color: white;
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.footer .social-link.email:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.download-section {
    margin-top: 20px;
}

.download-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    width: fit-content;
}

.footer-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #334155, transparent);
    margin: 40px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid #334155;
    position: relative;
    z-index: 1;
}

.footer-bottom-left p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-tagline {
    margin-top: 5px !important;
    font-size: 0.85rem !important;
    color: #64748b !important;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--primary-color);
}

.separator {
    color: #64748b;
    font-size: 0.8rem;
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 15px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-stats {
        justify-content: center;
    }

    .footer .social-media-row {
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
        flex-wrap: wrap;
    }

    .footer .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        border-radius: 12px;
    }

    .download-section {
        margin-top: 25px;
    }

    .download-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .footer-download-btn {
        margin: 0 auto;
        width: fit-content;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 25px 15px;
    }

    .footer-bottom-left p {
        margin-bottom: 5px;
    }

    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .separator {
        margin: 0 5px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        margin-right: 8px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        padding: 20px 0;
        gap: 0;
        border-top: 1px solid rgba(226, 232, 240, 0.8);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 8px 0;
        width: 90%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .nav-link {
        display: block;
        padding: 16px 24px;
        margin: 0;
        border-radius: 12px;
        font-size: 1rem;
        width: 100%;
    }

    .nav-link.cta-btn {
        margin: 8px 0;
        background: var(--gradient-primary);
        color: white;
        box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        background: rgba(99, 102, 241, 0.15);
        border: 2px solid rgba(99, 102, 241, 0.3);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero-cta {
        justify-content: center;
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }

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

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

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step:nth-child(even) {
        flex-direction: column;
    }

    .step:nth-child(even) .step-content {
        text-align: center;
    }

    .step:nth-child(even) .step-icon {
        margin-left: 0;
        margin-right: 0;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-cta {
        justify-content: center;
    }

    .download {
        padding: 60px 0;
        text-align: center;
    }

    .download-content {
        padding: 0 15px;
    }

    .download-title {
        font-size: 2rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .download-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .download-btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        justify-content: center;
        padding: 16px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 0 60px;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .hero-cta {
        gap: 12px;
    }

    .cta-button {
        padding: 12px 18px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 260px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .feature-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .download {
        padding: 50px 0;
    }

    .download-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.2;
        padding: 0 10px;
    }

    .download-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .download-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
        max-width: 240px;
    }

    .footer .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .footer .social-media-row {
        gap: 12px;
    }

    .footer-download-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Legal Pages Styles */
.legal-hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="legalgrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23legalgrid)"/></svg>');
    pointer-events: none;
}

.legal-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.legal-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.last-updated {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-content {
    padding: 80px 0;
    background: var(--background-light);
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

.toc-sidebar {
    position: sticky;
    top: 100px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.toc-sidebar h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toc-link {
    display: block;
    padding: 10px 15px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
}

.toc-link:hover {
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(3px);
}

.legal-main {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.legal-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.legal-section h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 20px 0 10px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-section p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 1rem;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.legal-section li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    color: var(--text-secondary);
}

.legal-section li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 8px;
    top: 0;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-method {
    background: var(--background-light);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-method p {
    margin: 0;
    font-size: 0.95rem;
}

.legal-notice {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-top: 40px;
}

.legal-notice h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.legal-notice p {
    margin: 0;
    font-style: italic;
    color: var(--text-primary);
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-hero {
        padding: 100px 0 60px;
    }
    
    .legal-title {
        font-size: 2.2rem;
    }
    
    .legal-subtitle {
        font-size: 1rem;
    }
    
    .legal-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .toc-sidebar {
        position: static;
        order: 2;
        margin-top: 30px;
    }
    
    .legal-main {
        padding: 30px 20px;
        order: 1;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-method {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .legal-hero {
        padding: 80px 0 40px;
    }
    
    .legal-title {
        font-size: 1.8rem;
    }
    
    .legal-main {
        padding: 25px 15px;
    }
    
    .legal-section {
        margin-bottom: 35px;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section h3 {
        font-size: 1.15rem;
    }
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.hidden { display: none; }
.visible { display: block; }

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Selection styles */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Blog Styles */
.blog-index-hero {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.blog-index-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-index-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.blog-description {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.blog-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-breadcrumbs {
    margin-bottom: 20px;
    opacity: 0.8;
}

.blog-breadcrumbs a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.blog-breadcrumbs a:hover {
    opacity: 1;
}

.blog-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.blog-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.blog-meta span {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
}

.blog-content {
    padding: 80px 0;
    background: #fafafa;
}

.blog-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-main {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.blog-image {
    margin-bottom: 40px;
}

.blog-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.image-caption {
    padding: 15px 20px;
    background: #f8f9fa;
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    border-bottom: 1px solid #e5e7eb;
}

.blog-text {
    padding: 40px;
}

.blog-text .lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 40px;
    padding: 25px;
    background: #f0f9ff;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

.blog-text h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.blog-text h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 30px 0 15px 0;
}

.blog-text h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 25px 0 10px 0;
}

.blog-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #374151;
}

.blog-text ul, .blog-text ol {
    margin: 20px 0 20px 30px;
    line-height: 1.7;
}

.blog-text li {
    margin-bottom: 8px;
    color: #374151;
}

.highlight-box {
    background: var(--gradient-primary);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.highlight-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.comparison-table {
    margin: 40px 0;
    overflow-x: auto;
}

.comparison-table h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.warning-box {
    background: #fef3cd;
    border: 1px solid #fbbf24;
    color: #92400e;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.warning-box p {
    margin: 0;
}

.testimonial-box {
    background: #f8fafc;
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.testimonial-box blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: #374151;
}

.cta-box {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 12px;
    margin: 50px 0;
}

.cta-box h3 {
    color: white;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-box .cta-button {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-box .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.blog-sidebar {
    space-y: 30px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.related-articles {
    space-y: 20px;
}

.related-article {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.related-article:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.related-article h4 {
    color: var(--primary-color);
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.related-article p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.download-widget {
    text-align: center;
}

.download-widget p {
    margin-bottom: 20px;
    color: #6b7280;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Blog Index Styles */
.blog-featured {
    padding: 60px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.featured-article {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.article-image {
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 30px;
}

.article-content h3 {
    margin-bottom: 15px;
}

.article-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.4rem;
}

.article-content h3 a:hover {
    color: var(--primary-color);
}

.article-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.article-meta span {
    font-size: 0.85rem;
    padding: 4px 12px;
    background: #f3f4f6;
    border-radius: 15px;
    color: #6b7280;
}

.article-meta .category {
    background: var(--primary-color);
    color: white;
}

.blog-articles {
    padding: 60px 0;
    background: #f8fafc;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-article {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.blog-article:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.article-thumbnail {
    overflow: hidden;
}

.article-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-article:hover .article-thumbnail img {
    transform: scale(1.05);
}

.article-info {
    padding: 25px;
}

.article-info h3 {
    margin-bottom: 12px;
}

.article-info h3 a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1.3;
}

.article-info h3 a:hover {
    color: var(--primary-color);
}

.article-info p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-categories {
    padding: 60px 0;
    background: white;
}

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

.category-card {
    text-align: center;
    padding: 40px 25px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.category-card:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.category-card h3 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.category-card p {
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 15px;
}

.post-count {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-newsletter {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 25px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f3f4f6;
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Additional Blog Elements */
.setup-step {
    display: flex;
    gap: 25px;
    margin: 30px 0;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    align-items: center;
}

.setup-step img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.advantage-grid, .trend-list, .decision-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.advantage-item, .trend-item, .factor {
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.advantage-item h4, .trend-item h4, .factor h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.advantage-item i, .trend-item i {
    font-size: 1.3rem;
}

.cost-breakdown, .year-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.cost-option, .year-item {
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.cost-option.highlight, .year-item.highlight {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
}

.cost-option h4, .year-item h4 {
    margin-bottom: 15px;
    color: inherit;
}

.cost-option ul, .year-item ul {
    margin: 15px 0;
}

.cost-option strong, .year-item strong {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-index-title {
        font-size: 2.5rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-meta {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .setup-step {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .blog-text {
        padding: 25px;
    }
    
    .blog-text h2 {
        font-size: 1.6rem;
    }
    
    .advantage-grid, .trend-list, .decision-factors, .cost-breakdown, .year-breakdown {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 60px 0 40px;
    }
    
    .blog-title {
        font-size: 1.8rem;
    }
    
    .blog-text .lead {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}