@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    
    /* Pitch Black Background & Surface Theme */
    --color-bg-deep: #000000;
    --color-bg-surface: rgba(10, 20, 38, 0.45);
    --color-bg-card: rgba(14, 28, 54, 0.3);
    
    /* Sky Blue & Cyan Palette */
    --color-primary: #38bdf8;
    --color-primary-glow: rgba(56, 189, 248, 0.35);
    --color-accent-sky: #0ea5e9;
    --color-cyan-glow: rgba(14, 165, 233, 0.2);
    
    /* Texts */
    --color-text-bright: #f1f5f9;
    --color-text-muted: #94a3b8;
    --color-text-dark: #64748b;
    
    /* Borders */
    --border-glass: 1px solid rgba(56, 189, 248, 0.2);
    --border-glass-hover: 1px solid rgba(56, 189, 248, 0.55);
    
    /* Glows & Filters */
    --shadow-glow: 0 0 30px rgba(14, 165, 233, 0.15);
    --shadow-glow-intense: 0 0 40px rgba(56, 189, 248, 0.45);
    --glass-blur: blur(16px);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: radial-gradient(circle at 50% 50%, #031326 0%, #000000 100%);
    color: var(--color-text-bright);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background WebGL Canvas */
#webgl-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: auto;
}

/* Base Ambient Glows for Extra Depth */
.ambient-glow-1 {
    position: fixed;
    top: 15%;
    left: 5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
    z-index: -2;
    pointer-events: none;
}

.ambient-glow-2 {
    position: fixed;
    bottom: 15%;
    right: 5%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(60px);
    z-index: -2;
    pointer-events: none;
}

/* Scroll Reveal Animation Styles */
.scroll-reveal {
    opacity: 0;
    transform: translateY(35px) scale(0.98);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.reveal-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Header & Navigation with Glassmorphism */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 2rem;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
    padding: 0.85rem 2rem;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at top left, var(--color-primary), var(--color-accent-sky));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 4s infinite linear;
}

@keyframes shine {
    0% { transform: translate(-100%, -100%) rotate(45deg); }
    100% { transform: translate(100%, 100%) rotate(45deg); }
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 30%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    box-shadow: 0 0 8px var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-text-bright);
}

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

/* Glassmorphic Navigation Action Button */
.nav-btn {
    background: rgba(56, 189, 248, 0.06);
    border: 1px solid rgba(56, 189, 248, 0.25);
    color: var(--color-primary);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: var(--glass-blur);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-btn:hover {
    background: rgba(56, 189, 248, 0.18);
    border: 1px solid rgba(56, 189, 248, 0.6);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-text-bright);
}

/* Grid & Structure */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    position: relative;
}

/* Glass Card Base Styles */
.glass-panel {
    background: var(--color-bg-surface);
    border: var(--border-glass);
    border-radius: 24px;
    backdrop-filter: var(--glass-blur);
    padding: 2.5rem;
    box-shadow: var(--shadow-glow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
    border: var(--border-glass-hover);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.25);
    transform: translateY(-4px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    background: rgba(56, 189, 248, 0.08);
    border: var(--border-glass);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    width: fit-content;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-primary);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 20%, var(--color-primary) 65%, var(--color-accent-sky) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

/* Glassmorphic Action Buttons */
.btn-primary {
    background: rgba(56, 189, 248, 0.07);
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #ffffff;
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: var(--glass-blur);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    border: 1px solid rgba(56, 189, 248, 0.7);
    box-shadow: 0 8px 30px rgba(56, 189, 248, 0.25), var(--shadow-glow-intense);
    background: rgba(56, 189, 248, 0.18);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: rgba(56, 189, 248, 0.06);
    border: var(--border-glass-hover);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.15);
}

/* 3D Visual Logo Container (Leaves space for interactive 3D elements) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo-3d-wrapper {
    position: relative;
    width: 330px;
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* 3D Glassmorphic Container ring */
.neon-ring-3d {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1.5px solid rgba(56, 189, 248, 0.35);
    border-radius: 50%;
    box-shadow: 0 0 35px rgba(56, 189, 248, 0.2), inset 0 0 35px rgba(56, 189, 248, 0.1);
    animation: rotate3d 12s linear infinite;
    pointer-events: none;
}

.neon-ring-3d-inner {
    position: absolute;
    width: 84%;
    height: 84%;
    border: 1px dashed rgba(14, 165, 233, 0.4);
    border-radius: 50%;
    animation: rotate3d-rev 8s linear infinite;
    pointer-events: none;
}

@keyframes rotate3d {
    0% { transform: rotateX(60deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: rotateX(60deg) rotateY(0deg) rotateZ(360deg); }
}

@keyframes rotate3d-rev {
    0% { transform: rotateX(-30deg) rotateY(0deg) rotateZ(360deg); }
    100% { transform: rotateX(-30deg) rotateY(0deg) rotateZ(0deg); }
}

/* Official brand logo styled beautifully with soft lighting */
.logo-image-container {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(10, 20, 38, 0.55);
    border: var(--border-glass);
    backdrop-filter: var(--glass-blur);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(56, 189, 248, 0.3);
    animation: float-logo 5s ease-in-out infinite;
    z-index: 10;
}

.logo-image-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes float-logo {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

/* Premium Motion Emojis floating around the 3D element */
.premium-motion-emoji {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(10, 20, 38, 0.85);
    border: var(--border-glass);
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s ease;
    z-index: 12;
}

.premium-motion-emoji:hover {
    transform: scale(1.2) rotate(12deg);
    border: var(--border-glass-hover);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.55);
}

.emoji-icon {
    font-size: 2rem;
    animation: emoji-motion 3.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes emoji-motion {
    0%, 100% { transform: scale(1) translateY(0) rotate(0deg); }
    50% { transform: scale(1.15) translateY(-5px) rotate(10deg); }
}

.emoji-pos-1 { top: -10px; left: -10px; animation-delay: 0s; }
.emoji-pos-2 { top: -20px; right: -10px; animation-delay: 0.6s; }
.emoji-pos-3 { bottom: 10px; left: -20px; animation-delay: 1.2s; }
.emoji-pos-4 { bottom: -15px; right: 10px; animation-delay: 1.8s; }

/* Stats Strip */
.stats-strip {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1.5rem 2.5rem;
    background: rgba(10, 20, 38, 0.25);
    border: var(--border-glass);
    border-radius: 20px;
    backdrop-filter: var(--glass-blur);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -1px;
}

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

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: 24px;
    padding: 2.25rem;
    backdrop-filter: var(--glass-blur);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(56, 189, 248, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.service-card:hover {
    border: var(--border-glass-hover);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.12);
}

.service-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(56, 189, 248, 0.08);
    border: var(--border-glass);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background: var(--color-primary);
    color: var(--color-bg-deep);
    box-shadow: 0 0 20px var(--color-primary);
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 700;
}

.service-card-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

.platform-badge {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 0.25rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    display: inline-block;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}

/* Telegram Direct Hub Section */
.hub-panel {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.hub-visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tg-giant-glow-logo {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(14, 165, 233, 0.03) 50%, transparent 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float-slow-hub 5s ease-in-out infinite alternate;
}

.tg-giant-glow-logo svg {
    width: 140px;
    height: 140px;
    filter: drop-shadow(0 0 25px rgba(56, 189, 248, 0.5));
    animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes float-slow-hub {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.4)); }
    50% { filter: drop-shadow(0 0 40px rgba(56, 189, 248, 0.7)); }
}

.hub-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.hub-link-card {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: var(--color-text-bright);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
}

.hub-link-card:hover {
    border: var(--border-glass-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.15);
    background: rgba(14, 28, 54, 0.45);
}

.hub-link-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hub-link-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.hub-link-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.hub-link-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 1.25rem;
    color: var(--color-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.hub-link-card:hover .hub-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Past Work & Vouches Portal Section */
.vouches-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.vouch-card {
    background: var(--color-bg-surface);
    border: var(--border-glass);
    border-radius: 22px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    backdrop-filter: var(--glass-blur);
    position: relative;
}

.vouch-rating {
    display: flex;
    gap: 0.25rem;
    color: #ffd700;
    font-size: 1.1rem;
}

.vouch-quote {
    font-style: italic;
    color: var(--color-text-bright);
    font-size: 1.05rem;
    line-height: 1.6;
}

.vouch-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.vouch-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-primary), var(--color-accent-sky));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-bg-deep);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

.vouch-user-info {
    display: flex;
    flex-direction: column;
}

.vouch-username {
    font-size: 0.95rem;
    font-weight: 600;
}

.vouch-channel {
    font-size: 0.8rem;
    color: var(--color-primary);
}

.vouch-badge-tg {
    position: absolute;
    top: 2.25rem;
    right: 2.25rem;
    font-size: 0.8rem;
    background: rgba(56, 189, 248, 0.08);
    color: var(--color-primary);
    padding: 0.25rem 0.65rem;
    border-radius: 8px;
    border: var(--border-glass);
    font-weight: 600;
}

/* Call to Action Section */
.cta-box {
    text-align: center;
    padding: 5rem 3rem;
    background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.08) 0%, rgba(10, 20, 38, 0.4) 80%);
    border: var(--border-glass);
    border-radius: 36px;
    backdrop-filter: var(--glass-blur);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    max-width: 800px;
    line-height: 1.2;
}

.cta-desc {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    max-width: 600px;
}

/* Footer styling */
footer {
    border-top: 1px solid rgba(56, 189, 248, 0.1);
    padding: 4rem 0 2rem 0;
    background: rgba(0, 0, 0, 0.95);
    position: relative;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-links-group {
    display: flex;
    justify-content: flex-end;
    gap: 6rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-bright);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(56, 189, 248, 0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--color-text-dark);
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 3.25rem;
    }
    
    .stats-strip {
        justify-content: center;
        gap: 4rem;
    }
    
    .hub-panel {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hub-visual-container {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-group {
        justify-content: flex-start;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    nav {
        display: none; 
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    section {
        padding: 5rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hub-links-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-strip {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .footer-links-group {
        flex-direction: column;
        gap: 2.5rem;
    }
}
