/* --- Design Tokens / CSS Variables --- */
:root {
    --bg-main: #090d16;
    --bg-darker: #05080e;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.05);
    
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.35);
    --secondary: #3b82f6;
    --secondary-glow: rgba(59, 130, 246, 0.25);
    --accent: #10b981;
    --accent-glow: rgba(16, 185, 129, 0.25);
    
    --text-primary: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #1f2937;
    
    --border-color: rgba(255, 255, 255, 0.07);
    --border-glow: rgba(99, 102, 241, 0.15);
    
    --gradient-primary: linear-gradient(135deg, #6366f1, #3b82f6);
    --gradient-accent: linear-gradient(135deg, #a78bfa, #60a5fa);
    --gradient-dark: linear-gradient(180deg, #090d16, #05080e);
    --gradient-glow: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(9, 13, 22, 0) 70%);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Glowing background blobs */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(5, 8, 14, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    top: 45%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(5, 8, 14, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- Layout Containers --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}

/* --- Glassmorphism Card Style --- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 12px 40px 0 rgba(99, 102, 241, 0.05);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px 0 var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 var(--primary-glow);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.1rem;
}

.w-full {
    width: 100%;
}

/* --- Badge --- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #8f92ff;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--accent-glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* --- Header Section --- */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 13, 22, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-item {
    color: var(--text-muted);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-item:hover {
    color: #ffffff;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Nav Menu Drawer */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-darker);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition-normal);
}

.mobile-nav.open {
    left: 0;
}

.mobile-nav-item {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

/* --- Hero Section --- */
.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

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

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-meta-info {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-meta-info .divider {
    width: 1px;
    height: 16px;
    background: var(--border-color);
}

/* --- Mockup Dashboard Visual --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-wrapper {
    width: 100%;
    max-width: 540px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(99, 102, 241, 0.05);
    transition: var(--transition-normal);
}

.screenshot-wrapper:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(99, 102, 241, 0.1);
}

.app-screenshot {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- Section Formatting --- */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-size: 2.6rem;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 40px 32px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px 0 var(--primary-glow);
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

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

/* --- Pricing Section --- */
.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
    cursor: pointer;
}

.toggle-label.active {
    color: #ffffff;
}

.pricing-toggle-btn {
    width: 60px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    position: relative;
    cursor: pointer;
    transition: var(--transition-fast);
}

.pricing-toggle-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.toggle-slider {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 4px;
    transition: var(--transition-normal);
    box-shadow: 0 2px 8px var(--primary-glow);
}

.pricing-toggle-btn.yearly-active .toggle-slider {
    left: 30px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.pricing-card {
    padding: 48px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, rgba(9, 13, 22, 0.02) 100%);
    box-shadow: 0 16px 48px 0 rgba(99, 102, 241, 0.08);
}

.popular-tag {
    position: absolute;
    top: 18px;
    right: 24px;
    background: var(--gradient-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.coming-soon-tag {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.card-header {
    margin-bottom: 32px;
}

.tier-name {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.tier-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.tier-price {
    display: flex;
    align-items: baseline;
    transition: opacity 0.15s ease-in-out;
}

.tier-price .currency {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
}

.tier-price .amount {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.tier-price .period {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-left: 8px;
}

.tier-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.tier-features li {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tier-features li.disabled {
    color: rgba(255, 255, 255, 0.25);
    text-decoration: line-through;
}

.text-success { color: var(--accent); }
.tier-features li.disabled i { color: rgba(255, 255, 255, 0.15); }

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Download Section --- */
.download-box {
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.download-subtitle {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 48px auto;
}

.download-options-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.download-option-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.download-option-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.01);
}

.download-option-header {
    margin-bottom: 24px;
}

.download-option-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-option-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.download-buttons-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.platform-download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.platform-download-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.platform-info {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
}

.platform-info i {
    font-size: 1.8rem;
}

.platform-details {
    display: flex;
    flex-direction: column;
}

.platform-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.platform-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Linux terminal helper banner */
.linux-terminal-guide {
    max-width: 600px;
    margin: 40px auto 0 auto;
    text-align: left;
    background: rgba(9, 13, 22, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
}

.linux-terminal-guide h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.linux-terminal-guide p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.terminal-code {
    background: #04060b;
    border-radius: 6px;
    padding: 12px 16px;
    font-family: monospace;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-code code {
    color: #a78bfa;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition-fast);
}

.copy-btn:hover {
    color: #ffffff;
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-arrow {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background: rgba(255, 255, 255, 0.01);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Footer --- */
footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 32px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: #ffffff;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 16px;
    line-height: 1.5;
}

/* --- Responsive Adjustments --- */
/* --- Screenshot Gallery Section --- */
.gallery-section {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.gallery-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-viewer {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.gallery-slide-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(9, 13, 22, 0.8);
    border: 1px solid var(--border-color);
    color: #ffffff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.gallery-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

.gallery-arrow.prev {
    left: 16px;
}

.gallery-arrow.next {
    right: 16px;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.gallery-thumb {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.gallery-thumb:hover {
    opacity: 0.8;
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 64px;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-meta-info {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 24px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .download-grid-platforms {
        grid-template-columns: 1fr;
    }
    
    .download-box {
        padding: 40px 24px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 0.9rem;
    }

    .gallery-viewer {
        height: 280px;
    }
    
    .gallery-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .gallery-thumbnails {
        gap: 6px;
    }
    
    .gallery-thumb {
        height: 45px;
    }
}

/* --- About & Business Section --- */
.about-section {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.03) 0%, rgba(9, 13, 22, 0) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.business-card {
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.business-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #a78bfa, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(167, 139, 250, 0.3);
}

.business-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.business-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Social Hub --- */
.social-hub-card {
    padding: 40px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.social-hub-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.social-hub-content p {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 32px auto;
    font-size: 1rem;
}

.social-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.social-btn i {
    font-size: 1.8rem;
}

.social-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.social-platform {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
}

.social-handle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Facebook styling */
.btn-facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: rgba(24, 119, 242, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.25);
}
.btn-facebook i { color: #1877F2; }

/* TikTok styling */
.btn-tiktok:hover {
    background: rgba(0, 242, 254, 0.12);
    border-color: rgba(0, 242, 254, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 242, 254, 0.2);
}
.btn-tiktok i { color: #00f2fe; }

/* Instagram styling */
.btn-instagram:hover {
    background: rgba(228, 64, 95, 0.15);
    border-color: rgba(228, 64, 95, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(228, 64, 95, 0.25);
}
.btn-instagram i { color: #E4405F; }

