/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #dc2626;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #dc2626;
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    color: #b91c1c;
}

.logo-text {
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #dc2626;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #dc2626;
    transition: width 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(220, 38, 38, 0.1);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    width: 1.25rem;
    height: 2px;
    background: #dc2626;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    max-height: 16rem;
    opacity: 1;
    background: rgba(15, 15, 20, 0.98);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    border-radius: 0 0 1rem 1rem;
}

.mobile-nav.active .mobile-nav-link {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 2.2rem;
    background: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.mobile-nav.active .mobile-nav-link:hover,
.mobile-nav.active .mobile-nav-link.active {
    background: rgba(220,38,38,0.15);
    color: #dc2626;
}

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

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #d1d5db;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000000 0%, #1f2937 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(220, 38, 38, 0.1), transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #dc2626;
    border-radius: 50%;
}

.particle:nth-child(1) {
    top: 25%;
    left: 25%;
    animation: pulse 2s infinite;
}

.particle:nth-child(2) {
    top: 75%;
    right: 25%;
    width: 2px;
    height: 2px;
    background: #ffffff;
    animation: ping 3s infinite;
}

.particle:nth-child(3) {
    top: 50%;
    right: 33%;
    width: 3px;
    height: 3px;
    animation: pulse 2s infinite 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(2rem);
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title-main {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.hero-title-sub {
    display: block;
    font-size: 2rem;
    color: #dc2626;
}

@media (min-width: 768px) {
    .hero-title-main {
        font-size: 4.5rem;
    }
    
    .hero-title-sub {
        font-size: 3rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Features Section */
.features {
    background: linear-gradient(180deg, #000000 0%, #1f2937 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: linear-gradient(135deg, #1f2937 0%, #000000 100%);
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-description {
    color: #9ca3af;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, #000000 100%);
}

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

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-label {
    color: #9ca3af;
    font-weight: 500;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #000000 0%, #1f2937 100%);
    text-align: center;
}

.cta-content {
    max-width: 32rem;
    margin: 0 auto;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    width: 1.5rem;
    height: 1.5rem;
    color: #dc2626;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* About Page Styles */
.about-content {
    background: linear-gradient(180deg, #1f2937 0%, #000000 100%);
}

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

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    space-y: 1.5rem;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about-paragraph {
    font-size: 1.125rem;
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    position: relative;
}

.about-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, transparent 100%);
    border-radius: 1rem;
}

.about-stats-grid {
    position: relative;
    background: linear-gradient(135deg, #1f2937 0%, #000000 100%);
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-stat {
    text-align: center;
}

.about-stat-icon {
    width: 4rem;
    height: 4rem;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.about-stat-icon svg {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

.about-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.about-stat-label {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Values Section */
.values {
    background: linear-gradient(180deg, #000000 0%, #1f2937 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: linear-gradient(135deg, #1f2937 0%, #000000 100%);
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateY(-4px);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.value-description {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Apps Page Styles */
.apps-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 32rem;
    margin: 2rem auto 0;
}

.apps-stat {
    text-align: center;
}

.apps-stat-icon {
    width: 4rem;
    height: 4rem;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.apps-stat-icon svg {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

.apps-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.apps-stat-label {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Published Apps */
.published-apps {
    background: linear-gradient(180deg, #1f2937 0%, #000000 100%);
}

.app-showcase {
    background: linear-gradient(135deg, #1f2937 0%, #000000 100%);
    border: 1px solid #374151;
    border-radius: 1.5rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .app-showcase {
        grid-template-columns: 1fr 1fr;
    }
}

.app-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.app-title-section {
    flex: 1;
}

.app-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.app-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.app-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.app-rating,
.app-downloads {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star-icon {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
}

.app-rating svg,
.app-downloads svg {
    width: 1rem;
    height: 1rem;
}

.app-description {
    font-size: 1.125rem;
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.app-features {
    margin-bottom: 2rem;
}

.features-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #dc2626;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item span {
    color: #9ca3af;
    font-size: 0.875rem;
}

.app-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .app-actions {
        flex-direction: row;
    }
}

.app-screenshots {
    space-y: 1rem;
}

.screenshots-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.screenshot {
    aspect-ratio: 9 / 16;
    background: #374151;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.screenshot:hover {
    transform: scale(1.05);
}

.screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Upcoming Apps */
.upcoming-apps {
    background: linear-gradient(135deg, #000000 0%, #1f2937 100%);
}

.upcoming-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .upcoming-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.upcoming-card {
    background: linear-gradient(135deg, #1f2937 0%, #000000 100%);
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.upcoming-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateY(-4px);
}

.upcoming-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.upcoming-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.upcoming-status {
    padding: 0.125rem 0.5rem;
    background: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.upcoming-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.upcoming-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.upcoming-category {
    font-size: 0.875rem;
    color: #6b7280;
}

.upcoming-icon {
    width: 2rem;
    height: 2rem;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upcoming-icon svg {
    width: 1rem;
    height: 1rem;
    color: #6b7280;
}

/* Apps CTA */
.apps-cta {
    background: linear-gradient(135deg, #1f2937 0%, #000000 100%);
    text-align: center;
}

/* Contact Page Styles */
.contact-methods {
    background: linear-gradient(180deg, #1f2937 0%, #000000 100%);
}

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

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        display: flex;
        justify-content: center;
        gap: 2rem;
    }
}

.contact-card {
    background: linear-gradient(135deg, #1f2937 0%, #000000 100%);
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateY(-4px);
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon svg {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-description {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.contact-link {
    color: #dc2626;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #b91c1c;
}

/* Contact Form */
.contact-form-section {
    background: linear-gradient(135deg, #000000 0%, #1f2937 100%);
}

.form-container {
    max-width: 32rem;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .form-title {
        font-size: 3rem;
    }
}

.form-description {
    font-size: 1.25rem;
    color: #9ca3af;
}

.contact-form {
    background: linear-gradient(135deg, #1f2937 0%, #000000 100%);
    border: 1px solid #374151;
    border-radius: 1.5rem;
    padding: 2rem;
}

.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.message-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #374151;
    border: 1px solid #4b5563;
    border-radius: 0.75rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.form-textarea {
    resize: none;
}

/* Social Section */
.social-section {
    background: linear-gradient(135deg, #1f2937 0%, #000000 100%);
    text-align: center;
}

.social-content {
    max-width: 32rem;
    margin: 0 auto;
}

.social-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.social-description {
    font-size: 1.125rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: #374151;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.social-link svg {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1f2937 100%);
    border-top: 1px solid rgba(220, 38, 38, 0.2);
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section {
    space-y: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    color: #dc2626;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-contacts {
    space-y: 0.5rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-contact:hover {
    color: #dc2626;
}

.footer-contact-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

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

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: #374151;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #dc2626;
    transform: scale(1.05);
}

.footer-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

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

.footer-link {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #dc2626;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
}

.modal.open {
    display: flex;
}

.modal-content {
    background: #18181b;
    color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 500px;
    width: 90vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: relative;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #dc2626;
    cursor: pointer;
}

@media (max-width: 600px) {
    .modal-content {
        padding: 1rem;
        font-size: 0.95rem;
    }
}