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

:root {
    --bg-primary: #020617;
    --bg-secondary: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.5);
    --border-color: #1e293b;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7e22ce;
    --indigo-600: #4f46e5;
    --indigo-700: #4338ca;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease;
}

nav.scrolled {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.05);
}

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

.nav-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:not(.btn-download):hover {
    color: var(--text-primary);
}

.nav-links a:not(.btn-download)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple-500);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-download):hover::after {
    width: 100%;
}

.btn-download {
    background: linear-gradient(to right, var(--purple-600), var(--indigo-600));
    color: var(--text-primary);
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.25);
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: linear-gradient(to right, var(--purple-700), var(--indigo-700));
    box-shadow: 0 6px 16px rgba(168, 85, 247, 0.4);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 1.5rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.2), var(--bg-primary), rgba(67, 56, 202, 0.2));
}

.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-bg::before {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(147, 51, 234, 0.2);
}

.hero-bg::after {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(79, 70, 229, 0.2);
    animation-delay: 1s;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    animation: slideUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 9999px;
    color: var(--purple-500);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    animation: fadeIn 0.8s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: slideUp 0.8s ease-out 0.1s backwards;
    letter-spacing: -0.02em;
}

.hero-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, var(--purple-600), var(--indigo-600));
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.25);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.3s backwards;
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--purple-700), var(--indigo-700));
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
    transform: scale(1.05);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateY(2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    animation: slideUp 0.8s ease-out 0.4s backwards;
}

.stat-item {
    cursor: default;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-value {
    color: var(--purple-500);
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
}

.stat-divider {
    width: 1px;
    height: 2rem;
    background: var(--border-color);
}

.hero-image {
    position: relative;
    animation: slideUp 0.8s ease-out 0.5s backwards;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to right, rgba(168, 85, 247, 0.2), rgba(79, 70, 229, 0.2));
    border-radius: 1rem;
    filter: blur(40px);
}

.hero-image img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    border: 1px solid rgba(168, 85, 247, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

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

/* Features Section */
.features {
    padding: 4rem 1.5rem;
    background: rgba(15, 23, 42, 0.3);
    position: relative;
    overflow: hidden;
}

.features::before,
.features::after {
    content: '';
    position: absolute;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    filter: blur(80px);
}

.features::before {
    top: 0;
    left: 25%;
    background: rgba(147, 51, 234, 0.05);
}

.features::after {
    bottom: 0;
    right: 25%;
    background: rgba(79, 70, 229, 0.05);
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    max-width: 48rem;
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card-large {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
}

.feature-card-large:hover {
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(15, 23, 42, 0.7);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.1);
    transform: translateY(-4px);
}

.feature-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-secondary), rgba(15, 23, 42, 0.5), transparent);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.feature-card-large:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 1.5rem;
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card-large:hover .feature-icon {
    background: rgba(168, 85, 247, 0.2);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.125rem;
    color: var(--purple-500);
    transition: color 0.3s ease;
}

.feature-card-large:hover .feature-icon i {
    color: #c084fc;
}

.feature-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.feature-card-large:hover h3 {
    color: #c084fc;
}

.feature-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature-card-large:hover p {
    color: #cbd5e1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: default;
}

.feature-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(15, 23, 42, 0.7);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.1);
    transform: translateY(-4px);
}

.feature-card .feature-icon {
    margin-bottom: 1rem;
}

.feature-card:hover .feature-icon {
    background: rgba(168, 85, 247, 0.2);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.feature-card:hover h3 {
    color: #c084fc;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #cbd5e1;
}

/* Network Section */
.network {
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.network::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(147, 51, 234, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.network-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.network-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.network-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.network-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: default;
}

.network-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.network-item:hover .network-icon {
    background: rgba(168, 85, 247, 0.2);
    transform: scale(1.1);
}

.network-icon i {
    font-size: 0.875rem;
    color: var(--purple-500);
    transition: color 0.3s ease;
}

.network-item:hover .network-icon i {
    color: #c084fc;
}

.network-item h3 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.network-item:hover h3 {
    color: #c084fc;
}

.network-item p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.network-item:hover p {
    color: #cbd5e1;
}

.network-visual {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.5s ease;
}

.network-visual:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.1);
}

.network-visual img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.7s ease;
}

.network-visual:hover img {
    transform: scale(1.05);
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.network-stat {
    text-align: center;
    padding: 0.75rem;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: default;
}

.network-stat:hover {
    background: rgba(168, 85, 247, 0.2);
}

.network-stat .stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
    transition: color 0.3s ease;
}

.network-stat:hover .stat-value {
    color: #c084fc;
}

.network-stat .stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.network-stat:hover .stat-label {
    color: #cbd5e1;
}

/* Team Section */
.team {
    padding: 4rem 1.5rem;
    background: rgba(15, 23, 42, 0.3);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    right: 25%;
    width: 16rem;
    height: 16rem;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.5s ease;
}

.team-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.1);
    transform: translateY(-8px);
}

.team-card img {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.team-card:hover img {
    transform: scale(1.1);
}

.team-info {
    padding: 1rem;
}

.team-info h3 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
    transition: color 0.3s ease;
}

.team-card:hover h3 {
    color: #c084fc;
}

.team-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.team-social {
    display: flex;
    gap: 0.5rem;
}

.team-social a {
    width: 2rem;
    height: 2rem;
    background: var(--border-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-social a:hover {
    transform: scale(1.1);
}

.team-social a:first-child:hover {
    background: rgba(37, 99, 235, 0.2);
}

.team-social a:last-child:hover {
    background: #374151;
}

.team-social i {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.team-social a:first-child i {
    color: #60a5fa;
}

/* Trusted Section */
.trusted {
    padding: 3rem 1.5rem;
    overflow: hidden;
    position: relative;
}

.trusted::before,
.trusted::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8rem;
    z-index: 10;
}

.trusted::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.trusted::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.trusted-header {
    text-align: center;
    margin-bottom: 2rem;
}

.trusted-header h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.trusted-header p {
    font-size: 0.75rem;
    color: #64748b;
}

.trusted-logos {
    position: relative;
    overflow: hidden;
}

.logos-scroll {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: scroll 30s linear infinite;
}

.logos-scroll img {
    height: 2rem;
    width: auto;
    opacity: 0.6;
    filter: grayscale(1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logos-scroll img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 4rem 1.5rem;
    background: rgba(15, 23, 42, 0.3);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: rgba(147, 51, 234, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-info > p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.contact-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
    background: rgba(168, 85, 247, 0.2);
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 0.875rem;
    color: var(--purple-500);
    transition: color 0.3s ease;
}

.contact-method:hover .contact-icon i {
    color: #c084fc;
}

.contact-method h3 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
    transition: color 0.3s ease;
}

.contact-method:hover h3 {
    color: #c084fc;
}

.contact-method a {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--purple-500);
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.5s ease;
}

.contact-form-wrapper:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-500);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-group textarea {
    resize: none;
}

.char-count {
    text-align: right;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.form-status {
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #4ade80;
    animation: fadeIn 0.3s ease;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
    animation: fadeIn 0.3s ease;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(to right, var(--purple-600), var(--indigo-600));
    color: var(--text-primary);
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.25);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(to right, var(--purple-700), var(--indigo-700));
    box-shadow: 0 6px 16px rgba(168, 85, 247, 0.4);
    transform: scale(1.05);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer .container {
    padding: 2.5rem 1.5rem;
}

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

.footer-brand {
    max-width: 28rem;
}

.footer-logo {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.footer-brand p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.footer-social a {
    width: 2rem;
    height: 2rem;
    background: var(--border-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(168, 85, 247, 0.2);
    color: var(--text-primary);
    transform: scale(1.1);
}

.footer-social i {
    font-size: 0.75rem;
}

.footer-links h3 {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links li {
    margin-bottom: 0.375rem;
}

.footer-links a {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--text-primary);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container,
    .network-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .hero-stats {
        flex-wrap: wrap;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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