/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background: #020202;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Homepage Layout */
.homepage {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #020202;
}

/* Header Styles - Combined Premium + Architectural */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(2, 2, 2, 0.9);
    backdrop-filter: blur(30px);
    border-radius: 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 9999;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(2, 2, 2, 0.95);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(40px);
}

header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    height: 65px;
    position: relative;
    z-index: 9999;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo a {
    text-decoration: none;
    display: block;
}

.nav-logo h1 {
    font-size: 1.6rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.15em;
    font-family: 'Montserrat', 'Inter', sans-serif;
    transition: all 0.4s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    text-transform: uppercase;
    font-style: normal;
    cursor: pointer;
}

.nav-logo h1::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    transition: width 0.4s ease;
    border-radius: 1px;
}

.nav-logo a:hover h1::after {
    width: 100%;
}

.nav-logo a:hover h1 {
    color: #3b82f6;
    transform: translateY(-1px);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

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

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: all 0.4s ease;
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    display: inline-block;
    text-align: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    transition: width 0.4s ease;
    border-radius: 1px;
}

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

.nav-link:hover,
.nav-link.active {
    color: #3b82f6;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 10000;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section - Combined Premium + Architectural */
.hero {
    height: 105vh;
    background: #020202 url('13.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}



.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(59, 130, 246, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
    text-align: left;
    margin: 0;
    padding: 0 0 0 6rem;
    margin-top: auto;
    margin-bottom: 2rem;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    bottom: -0.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    z-index: -1;
    backdrop-filter: blur(2px);
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 0.8rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    color: #FFFFFF;
    margin: 0.5rem 0 1.2rem 0;
    max-width: 500px;
    line-height: 1.3;
    text-align: left;
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 11px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.05em;
    font-family: 'Montserrat', 'Inter', sans-serif;
    line-height: 150%;
}

.btn-primary {
    background: #FFFFFF;
    color: #020202;
    border: 1px solid #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    background: #f8f9fa;
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}





/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}



.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}







/* Services Section */
.services-section {
    background: #000000;
    padding: 3rem 0;
    position: relative;
    margin-top: -2rem;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #333333;
}

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

.services-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    position: relative;
    padding: 0;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -2rem;
    right: -2rem;
    height: 1px;
    background: #333333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 3rem;
    justify-content: center;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem 2rem;
    border-radius: 0;
    text-align: center;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.service-image {
    margin-bottom: 2rem;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

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

.free-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    font-size: 0.55rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    padding: 0.25rem 0.5rem;
    border-radius: 0;
    text-transform: uppercase;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    font-family: 'Space Grotesk', sans-serif;
    backdrop-filter: none;
    opacity: 1;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.service-card p {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.view-more {
    color: #ffffff;
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-block;
}

.view-more:hover {
    color: #3b82f6;
}

/* Responsive Design for Services */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-title {
        font-size: 2.5rem;
        text-align: center;
    }
}

/* Products Category Section - SMEG Style */
.products-section {
    background: #ffffff;
    padding: 2rem 0 3rem;
    position: relative;
}

.products-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.products-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.products-subtitle {
    font-size: 1rem;
    color: #666666;
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.category-card {
    background: transparent;
    border: none;
    position: relative;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #f8f8f8;
    margin-bottom: 1.5rem;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease-in-out;
}

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

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

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

.category-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.category-icon i {
    font-size: 1.2rem;
    color: #000000;
}

.category-content {
    text-align: center;
}

.category-content h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.category-content p {
    color: #666666;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

.category-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #999999;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.stat i {
    color: #000000;
    font-size: 0.65rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8rem;
    padding: 0.6rem 1.25rem;
    border: 1px solid #000000;
    transition: all 0.3s ease;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.category-link:hover {
    background: #000000;
    color: #ffffff;
}

.category-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(3px);
}

.products-cta {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    border-radius: 24px;
    margin: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.products-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.05) 50%, transparent 70%);
    border-radius: 20px;
    pointer-events: none;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 0.02em;
    text-transform: none;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    letter-spacing: 0.01em;
    font-family: 'Montserrat', 'Inter', sans-serif;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 1.2rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-transform: none;
    letter-spacing: 0.02em;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.cta-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: scale(1.1);
}

/* Responsive Design for Products Section */
@media (max-width: 1400px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .products-container {
        padding: 0 2rem;
    }
}

@media (max-width: 1024px) {
    .products-section {
        padding: 2.5rem 0 3rem;
    }
    
    .products-title {
        font-size: 1.8rem;
    }
    
    .products-subtitle {
        font-size: 0.9rem;
    }
    
    .category-image {
        height: 260px;
    }
    
    .products-cta {
        padding: 2.5rem 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 0.85rem;
    }
    
    .categories-grid {
        gap: 2rem;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .products-title {
        font-size: 1.6rem;
    }
    
    .category-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
    }
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSubtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}



/* Footer Styles */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 2.5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

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

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

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.footer-logo .highlight {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.6rem;
}

.footer-contact-icon {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    font-size: 0.85rem;
    min-width: 16px;
    flex-shrink: 0;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #3b82f6;
    transform: translateX(3px);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #3b82f6;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
        grid-template-areas: 
            "brand brand brand"
            "services products company";
    }
    
    .footer-brand {
        max-width: 100%;
        grid-area: brand;
        margin-bottom: 2rem;
        text-align: center;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .footer-contact {
        margin-bottom: 1.5rem;
    }
    
    .footer-contact-item {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        justify-content: center;
    }
    
    .footer-section:nth-child(2) {
        grid-area: services;
    }
    
    .footer-section:nth-child(3) {
        grid-area: products;
    }
    
    .footer-section:nth-child(4) {
        grid-area: company;
    }
    
    .footer-contact-item {
        justify-content: center;
        font-size: 0.75rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        gap: 1rem;
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas: 
            "brand brand brand"
            "services products company";
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-logo {
        font-size: 1.4rem;
    }
    
    .footer-description {
        font-size: 0.75rem;
    }
    
    .footer-contact-item {
        font-size: 0.7rem;
    }
    
    .footer-section h4 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.7rem;
    }
    
    .footer-links li {
        margin-bottom: 0.4rem;
    }
    
    .footer-brand {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-contact-item {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
    }
    
    .footer-copyright {
        font-size: 0.7rem;
    }
    
    .footer-legal a {
        font-size: 0.7rem;
    }
}

/* Consultation Options Grid */
.consultation-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

.consultation-option-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.consultation-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.015) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.consultation-option-card:hover::before {
    opacity: 1;
}

.consultation-option-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.consultation-option-card:hover::after {
    opacity: 1;
}

.consultation-option-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.08);
}

.consultation-option-card.featured {
    border-color: rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 100%);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
}

.consultation-option-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.2);
}

.consultation-option-card.premium {
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(59, 130, 246, 0.02) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.consultation-option-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.2);
}

.consultation-option-card.coming-soon {
    border-color: rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    opacity: 0.7;
    cursor: not-allowed;
}

.consultation-option-card.exclusive {
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(59, 130, 246, 0.02) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.consultation-option-card.exclusive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.2);
}

.consultation-option-card.coming-soon:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.coming-soon-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5a2b, #a0722b);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.option-icon.disabled {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    opacity: 0.6;
}

.consultation-option-card.coming-soon:hover .option-icon.disabled {
    transform: none;
}

.option-cta.disabled {
    background: rgba(107, 114, 128, 0.3);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(107, 114, 128, 0.3);
    cursor: not-allowed;
    pointer-events: none;
}

.option-cta.disabled:hover {
    transform: none;
    box-shadow: none;
}

.featured-badge {
    position: static;
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    text-align: center;
    min-width: 120px;
}

.premium-badge {
    position: static;
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    text-align: center;
    min-width: 120px;
}

.exclusive-badge {
    position: static;
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #ffffff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.option-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.option-icon:hover::before {
    opacity: 1;
}

.premium-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.exclusive-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.consultation-option-card:hover .option-icon {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.consultation-option-card:hover .premium-icon {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.consultation-option-card:hover .exclusive-icon {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.consultation-option-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 0.02em;
    text-transform: none;
}

.badge-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.consultation-option-card p.option-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 400;
}

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

.option-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Montserrat', 'Inter', sans-serif;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.meta-item i {
    color: #3b82f6;
    font-size: 0.9rem;
}

.premium .meta-item i {
    color: #3b82f6;
}

.exclusive .meta-item i {
    color: #3b82f6;
}

.consultation-option-card .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
    text-align: left;
    font-weight: 400;
    line-height: 1.4;
}

.consultation-option-card .feature-item i {
    color: #3b82f6;
    font-size: 0.9rem;
    min-width: 16px;
    flex-shrink: 0;
    margin-top: 0.1rem;
    line-height: 1;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.3rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.premium .feature-item i {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.exclusive .feature-item i {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.option-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #ffffff;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-cta {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.option-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.premium-cta:hover {
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.option-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.option-cta:hover::before {
    left: 100%;
}

/* Responsive Design for Consultation Options */
@media (max-width: 1400px) {
    .consultation-options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 1200px;
    }
    
    .consultation-option-card .feature-item {
        font-size: 0.7rem;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.7rem;
    }
}

@media (max-width: 1200px) {
    .consultation-option-card .feature-item {
        font-size: 0.68rem;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.68rem;
    }
}

@media (max-width: 1024px) {
    .consultation-option-card .feature-item {
        font-size: 0.66rem;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.66rem;
    }
}

@media (max-width: 900px) {
    .consultation-option-card .feature-item {
        font-size: 0.65rem;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.65rem;
    }
    
    .hero-subtitle {
        line-height: 1.35;
        margin: 0.5rem 0 1.2rem 0;
    }
}

/* Premium Card Animations */
@keyframes premiumCardGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 15px rgba(59, 130, 246, 0.08);
    }
}

.consultation-option-card.featured {
    animation: premiumCardGlow 4s ease-in-out infinite;
}

@keyframes premiumCardGlowPurple {
    0%, 100% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 15px rgba(59, 130, 246, 0.08);
    }
}

.consultation-option-card.premium {
    animation: premiumCardGlowPurple 4s ease-in-out infinite;
}

@keyframes premiumCardGlowGold {
    0%, 100% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 15px rgba(59, 130, 246, 0.08);
    }
}

.consultation-option-card.exclusive {
    animation: premiumCardGlowGold 4s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .consultation-options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }
    
    .consultation-option-card {
        padding: 2rem 1.5rem;
    }
    
    .consultation-option-card .feature-item {
        font-size: 0.64rem;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.64rem;
    }
    
    .option-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .consultation-option-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .consultation-option-card {
        padding: 1.5rem 1rem;
    }
}

/* Interactive Button Styles */
.area {
  --ease-elastic: cubic-bezier(0.5, 2, 0.3, 0.8);
  --ease-elastic-2: cubic-bezier(0.5, -1, 0.3, 0.8);
  --primary: #ff8800;
  --rounded-max: 100px;
  --rounded-min: 10px;
  --h: 40px;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  inset: 0;
}

.area-wrapper {
  position: relative;
  padding: 20px 5px;
  cursor: pointer;
}

.area-wrapper:hover .wrapper {
  transform: translateY(0) scale(1);
}

.area-wrapper:hover .wrapper .case .mask {
  box-shadow:
    inset 6px -12px 12px -8px black,
    inset 8px -14px 10px -10px white,
    0 15px 40px -4px #111;
}

.area-wrapper:hover .wrapper .part-2 .glass {
  box-shadow:
    inset 0 0 6px -3px white,
    inset 0 -8px 8px -6px rgba(255, 255, 255, 0.4),
    inset 6px -12px 12px -8px black,
    inset 6px -8px 10px -10px white,
    0 15px 40px -4px #111;
}

.area svg {
  overflow: visible;
}

.wrapper {
  display: block;
  border-radius: 100px;
  position: relative;
  z-index: 2;
  transition: all 0.6s var(--ease-elastic);
  transform: translateY(-10px) scale(1.02);
}

.wrapper input {
  position: absolute;
  background: transparent;
  opacity: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 10;
  cursor: pointer;
  pointer-events: all;
  user-select: none;
  outline: none;
}

.button {
  background: transparent;
  display: flex;
  border: none;
  padding: 0;
  margin: 0;
}

.button::before {
  display: none;
}

.button::after {
  display: none;
}

.part-1 {
  position: relative;
  z-index: 1;
  height: var(--h);
  width: 70px;
  border-radius: var(--rounded-max) var(--rounded-min) var(--rounded-min)
    var(--rounded-max);
}

.part-1 .line {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  transition: all 0.4s ease;
}

.part-1 .line::before {
  display: none;
}

.part-1 .screw {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  overflow: hidden;
  padding: 10px 0;
}

.part-1 .screw svg {
  width: auto;
  height: 30px;
}

.part-1 .screw svg g {
  transform-origin: center;
}

.part-1 .screw svg .dot {
  color: #8e8c8b;
}

.part-1 .case {
  height: var(--h);
  width: 70px;
  border-radius: inherit;
  transform: translateX(-35px);
  transition: all 0.9s var(--ease-elastic);
}

.part-1 .case .mask {
  position: absolute;
  overflow: hidden;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    #2c2e31 0%,
    #31343e 20%,
    #212329 100%
  );
  box-shadow:
    inset 6px -12px 12px -8px black,
    inset 8px -14px 10px -10px white,
    0 20px 50px -4px #111;
  transition: all 0.9s var(--ease-elastic);
}

.part-1 .case .mask::before {
  content: "";
  position: absolute;
  border-radius: inherit;
  left: 30%;
  top: 23%;
  width: 100%;
  height: 30%;
  background: white;
  filter: blur(12px);
}

.part-1 .case .mask::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  mix-blend-mode: overlay;
}

.part-2 {
  position: relative;
  height: var(--h);
  width: 160px;
  border-radius: var(--rounded-min) var(--rounded-max) var(--rounded-max)
    var(--rounded-min);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
}

.part-2 .glass {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  transition: all 0.9s var(--ease-elastic);
  border-radius: inherit;
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  box-shadow:
    inset 0 0 6px -3px white,
    inset 0 -8px 8px -6px rgba(255, 255, 255, 0.4),
    inset 6px -12px 12px -8px black,
    inset 6px -8px 10px -10px white,
    0 20px 50px -4px #111;
}

.part-2 .glass::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  right: 14%;
  height: 70%;
  border-radius: 0 25px 0 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 60%
  );
}

.part-2 .glass::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15%;
  right: 5%;
  height: 75%;
  border-radius: 0 30px 30px 0;
  box-shadow: inset -2px -6px 5px -5px rgba(255, 255, 255, 0.8);
  filter: blur(3px);
}

.part-2 .glass .glass-reflex {
  position: absolute;
  inset: 0;
  width: 70%;
  border-radius: 0 50% 50% 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: translateX(-115%) skewX(30deg);
}

.part-2 .glass .glass-noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.part-2 .path-glass {
  position: absolute;
  inset: 0;
  transition: opacity 0.6s linear;
  opacity: 0;
}

.part-2 .path-glass path {
  stroke-dashoffset: 430;
  stroke-dasharray: 430 430;
  animation: 1.4s path-glass ease infinite;
}

@keyframes path-glass {
  0% {
    stroke-dasharray: 430 430;
    color: greenyellow;
    opacity: 1;
    filter: blur(2px);
  }
  50% {
    stroke-dasharray: 860 430;
    opacity: 1;
    filter: blur(4px);
  }
  100% {
    stroke-dasharray: 860 430;
    color: var(--primary);
    opacity: 0;
  }
}

.part-2 .filament {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: 26px;
  stroke-width: 2px;
  opacity: 0.3;
}

.part-2 .filament path {
  transition: all 0.6s ease-in-out;
}

.part-2 .filament-on {
  opacity: 1;
}

.part-2 .filament-on path {
  stroke-dashoffset: 100;
  stroke-dasharray: 100 100;
}

.part-2 .filament-blur {
  opacity: 1;
  filter: blur(8px);
  color: rgb(255, 208, 0);
  stroke-width: 10px;
}

.text {
  transition: all 0.3s ease;
  transform: translateY(0);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.16em;
  position: absolute;
  inset: 0;
  height: 100%;
  line-height: 1;
}

.text span {
  display: block;
  color: transparent;
  position: relative;
}

.text.state-1 span:nth-child(3) {
  margin-right: 5px;
}

.text.state-2 span:nth-child(4),
.text.state-2 span:nth-child(6) {
  margin-right: 5px;
}

.text span::before,
.text span::after {
  content: attr(data-label);
  position: absolute;
  font-size: 14px;
  left: 0;
  color: rgba(255, 255, 255, 0.9);
}

.text span::before {
  opacity: 1;
  transform: translateY(0);
}

.text span::after {
  opacity: 1;
  transform: translateY(0);
}

.area-wrapper input:checked ~ .button .filament path {
  transition-delay: 0.6s;
}

.area-wrapper:hover input:checked ~ .button .filament path {
  stroke-dasharray: 100 0;
}

.area-wrapper input:checked ~ .button .part-1 .case {
  transform: translateX(0px);
  transition: all 1.25s var(--ease-elastic-2);
}

.area-wrapper:hover input:checked ~ .button::before,
.area-wrapper:hover input:checked ~ .button::after,
.area-wrapper:hover .button .path-glass {
  display: none;
}

.area-wrapper:hover .button .part-1 .line {
  opacity: 0;
}

.area-wrapper input:not(:checked) ~ .button .part-1 .line::before {
  box-shadow: 1px 0 10px 3px rgba(255, 220, 145, 0.4);
  background: rgb(140, 140, 140);
}

.area-wrapper:hover .glass-reflex {
  animation: reflex 0.6s ease;
}

.area-wrapper:hover .text span::before {
  animation: char-in 1s ease calc(var(--i) * 0.03s) forwards;
}

.area-wrapper:hover .text span::after,
.area-wrapper input:not(:checked) ~ .button .text.state-1 span::before,
.area-wrapper input:not(:checked) ~ .button .text.state-1 span::after,
.area-wrapper input:checked ~ .button .text.state-2 span::before,
.area-wrapper input:checked ~ .button .text.state-2 span::after {
  opacity: 0;
  animation: char-out 1.3s ease calc(var(--i) * 0.04s) backwards;
}

.area-wrapper input:not(:checked) ~ .button .part-1 .screw g {
  animation: pulse 0.8s ease calc(var(--i) * 0.1s) backwards;
}

.area-wrapper input:checked ~ .button .part-1 .screw g {
  animation: pulse-out 0.8s ease calc((5 - var(--i)) * 0.2s) backwards;
}

.area-wrapper input:not(:checked) ~ .button .part-1 .screw .dot {
  animation: dot 0.7s ease calc(var(--i) * 0.15s) backwards;
}

.area-wrapper input:checked ~ .button .part-1 .screw .dot {
  animation: dot-out 0.7s ease calc((3 - var(--i)) * 0.15s) forwards;
}

@keyframes line {
  0% {
    height: 0%;
    opacity: 1;
  }
  50% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 140%;
    opacity: 0;
  }
}

@keyframes dot {
  30% {
    color: var(--primary);
    filter: blur(2px);
  }
}

@keyframes dot-out {
  40% {
    color: white;
    filter: blur(2px);
  }
}

@keyframes pulse {
  30% {
    transform: scaleY(0.8);
  }
}

@keyframes pulse-out {
  40% {
    transform: scaleY(0.8);
  }
}

@keyframes char-in {
  0% {
    opacity: 0;
    transform: scale(10) translateX(-25%);
    filter: blur(10px);
    color: rgb(0, 251, 255);
  }
  25% {
    transform: translateY(-15%);
    opacity: 1;
    filter: blur(1px);
    color: var(--primary);
  }
  50% {
    transform: translateY(7%);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes char-out {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-70%);
    opacity: 0;
    filter: blur(4px);
  }
}

@keyframes reflex {
  0% {
    transform: translateX(-115%);
  }
  100% {
    transform: translateX(140%);
  }
}

.noise {
  display: none;
}

.bg {
  display: none;
}

.bg::before {
  display: none;
}

.bg .light-1 {
  display: none;
}

.bg .light-2 {
  display: none;
}

.bg .light-3 {
  display: none;
}

/* Black Two-Column Section */
.black-section {
    background: #000000;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.black-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    z-index: 1;
}

.black-container {
    width: 100%;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
}

.black-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.black-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.black-text p {
    font-size: 1rem;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.black-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.feature-item i {
    color: #10b981;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

.black-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.black-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.black-cta i {
    transition: transform 0.3s ease;
}

.black-cta:hover i {
    transform: translateX(4px);
}

.black-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.video-container {
    position: relative;
    width: 100%;
    height: 450px;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button i {
    color: #000000;
    font-size: 1.8rem;
    margin-left: 4px;
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: 0;
        top: 65px;
        flex-direction: column;
        background-color: rgba(15, 15, 15, 0.95);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
        gap: 2rem;
        transform: translateX(-100%);
        z-index: 9998;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }
    
    /* Ensure nav-menu is properly hidden when not active */
    .nav-menu:not(.active) {
        visibility: hidden;
        pointer-events: none;
    }
    
    /* Make sure nav-menu is visible when active */
    .nav-menu.active {
        visibility: visible;
        pointer-events: auto;
    }
    
    /* Mobile hero styling - match other pages */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 6rem;
    }
    
    .hero::after {
        background: linear-gradient(135deg, rgba(2, 2, 2, 0.7) 0%, rgba(2, 2, 2, 0.5) 50%, rgba(2, 2, 2, 0.8) 100%);
        z-index: 1;
    }
    
    .hero-container {
        position: relative;
        z-index: 3;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
        margin-bottom: 2rem;
        padding: 0 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    /* Remove rectangle background on mobile */
    .hero-content::before {
        display: none;
    }
    

    

    
    .navbar {
        padding: 1rem 2rem;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
        width: 100%;
        display: block;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.3;
        margin: 0.5rem 0 1.2rem 0;
        text-align: center;
        width: 100%;
        display: block;
    }
    
    /* Black section responsive */
    .black-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .black-text h2 {
        font-size: 2.5rem;
    }
    
    .black-text p {
        font-size: 1.1rem;
    }
    
    .black-features {
        justify-content: center;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .video-container {
        height: 300px;
    }
    
    /* Consultation options tablet improvements */
    .consultation-options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 700px;
        margin: 0 auto;
        justify-items: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .consultation-option-card {
        padding: 2.5rem 2rem;
    }
    
    .consultation-option-card h3 {
        font-size: 1.3rem;
    }
    
    .consultation-option-card p.option-description {
        font-size: 0.95rem;
    }
    
    .consultation-option-card .feature-item {
        font-size: 0.85rem;
        justify-content: flex-start;
        text-align: left;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.85rem;
    }
    
    .option-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 1024px) {
    /* Consultation options - ensure one card per row on all mobile devices */
    .consultation-options-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 700px;
        margin: 0 auto;
        justify-items: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .consultation-option-card {
        width: 100%;
        max-width: 100%;
        min-width: unset;
        box-sizing: border-box;
        justify-self: center;
    }
    
    /* Increase section padding on mobile */
    .consultation-options-section {
        padding: 4rem 0;
    }
    
    .consultation-options-container {
        padding: 0 1rem;
    }
    
    .consultation-option-card .feature-item {
        font-size: 0.74rem !important;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.74rem !important;
    }
}

@media (max-width: 480px) {
    /* Mobile hero styling - smaller screens */
    .hero {
        padding-bottom: 4rem;
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 0 1rem;
        margin-bottom: 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .hero-title {
        font-size: 1.8rem;
        text-align: center;
        width: 100%;
        display: block;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.25;
        margin: 0.4rem 0 1rem 0;
        text-align: center;
        width: 100%;
        display: block;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        display: flex;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Consultation options mobile improvements */
    .consultation-options-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 650px;
        margin: 0 auto;
        justify-items: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .consultation-option-card {
        padding: 2.5rem 2.5rem;
        text-align: center;
        width: 100%;
        min-width: unset;
        box-sizing: border-box;
        justify-self: center;
    }
    
    .consultation-option-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .consultation-option-card p.option-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        text-align: center;
        line-height: 1.5;
    }
    
    .option-features {
        margin-bottom: 1.5rem;
    }
    
    .consultation-option-card .feature-item {
        justify-content: center;
        text-align: center;
        margin-bottom: 0.75rem;
        font-size: 0.75rem;
        flex-direction: column;
        align-items: center;
    }
    
    .consultation-option-card .feature-item i {
        margin-top: 0;
        align-self: center;
        margin-bottom: 0.5rem;
    }
    
    .consultation-option-card .feature-item span {
        text-align: center;
        display: block;
        width: 100%;
        font-size: 0.75rem;
    }
    
    .option-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    /* Products CTA mobile improvements */
    .products-cta {
        margin: 1rem;
        padding: 3rem 1.5rem;
        border-radius: 16px;
    }
    
    .cta-content h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .option-cta {
        padding: 1.2rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .featured-badge,
    .premium-badge,
    .exclusive-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
        margin-bottom: 1rem;
    }
    
    /* Further increase section padding on small mobile */
    .consultation-options-section {
        padding: 3.5rem 0;
    }
    
    .consultation-options-container {
        padding: 0 1rem;
    }
}

/* Medium-small mobile devices */
@media (max-width: 600px) {
    .consultation-options-grid {
        max-width: 680px;
        padding: 0 1rem;
        gap: 2.5rem;
        justify-items: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .consultation-option-card {
        padding: 2.5rem 2.2rem;
        min-width: unset;
        width: 100%;
        max-width: 100%;
        justify-self: center;
        box-sizing: border-box;
    }
    
    .consultation-option-card .feature-item {
        font-size: 0.72rem !important;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.72rem !important;
    }
    
    .consultation-options-container {
        padding: 0 0.5rem;
    }
    
    .hero-subtitle {
        line-height: 1.28;
        margin: 0.45rem 0 1.1rem 0;
    }
    
    /* Ensure no overflow on very small screens */
    .consultation-options-section {
        overflow: hidden;
    }
    
    .consultation-options-grid {
        overflow: hidden;
    }
}

/* Very small mobile devices */
@media (max-width: 400px) {
    .consultation-options-container {
        padding: 0 0.25rem;
    }
    
    .consultation-options-grid {
        padding: 0 0.5rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .consultation-option-card {
        min-width: unset;
        width: 100%;
        max-width: 100%;
        padding: 1.8rem 1.5rem;
        box-sizing: border-box;
    }
    
    .consultation-option-card .feature-item {
        font-size: 0.65rem !important;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.65rem !important;
    }
    
    /* Ensure no overflow on very small screens */
    .consultation-options-section {
        overflow: hidden;
    }
    
    .consultation-options-grid {
        overflow: hidden;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .consultation-options-grid {
        max-width: 100%;
        padding: 0 1rem;
        grid-template-columns: 1fr !important;
        justify-items: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .consultation-option-card {
        padding: 2rem 2rem;
        min-width: unset;
        width: 100%;
        max-width: 100%;
        justify-self: center;
        box-sizing: border-box;
    }
    
    .consultation-option-card h3 {
        font-size: 1.2rem;
    }
    
    .consultation-option-card p.option-description {
        font-size: 0.9rem;
    }
    
    .consultation-option-card .feature-item {
        font-size: 0.7rem;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.7rem;
    }
    
    .option-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .option-cta {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .consultation-options-container {
        padding: 0 0.5rem;
    }
}

/* Ultra small mobile devices */
@media (max-width: 320px) {
    .consultation-option-card .feature-item {
        font-size: 0.6rem !important;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.6rem !important;
    }
    
    .consultation-option-card {
        padding: 1.5rem 1rem;
    }
}

/* Coming Soon Overlay Styles */
.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 10;
    backdrop-filter: blur(2px);
}

.coming-soon-badge {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.coming-soon-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.coming-soon-badge:hover::before {
    left: 100%;
}

.coming-soon-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.coming-soon-badge i {
    font-size: 1.1rem;
    color: #d4af37;
    animation: subtle-pulse 3s ease-in-out infinite;
}

.coming-soon-badge span {
    font-weight: 600;
    letter-spacing: 0.1em;
}

@keyframes subtle-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Coming Soon Link Styles */
.category-link.coming-soon {
    background: #000000;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: default;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.category-link.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.category-link.coming-soon:hover::before {
    left: 100%;
}

.category-link.coming-soon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.category-link.coming-soon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.category-link.coming-soon i {
    font-size: 1rem;
    color: #ffffff;
    animation: subtle-pulse 3s ease-in-out infinite;
}

.category-link.coming-soon span {
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* Responsive adjustments for Coming Soon elements */
@media (max-width: 768px) {
    .coming-soon-badge {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .coming-soon-badge i {
        font-size: 1rem;
    }
    
    .category-link.coming-soon {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
    
    .category-link.coming-soon i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-badge {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
    
    .coming-soon-badge i {
        font-size: 0.9rem;
    }
    
    .category-link.coming-soon {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    
    .category-link.coming-soon i {
        font-size: 0.8rem;
    }
}

/* Footer Coming Soon Text Styles */
.coming-soon-text {
    color: #666666;
    font-style: italic;
    opacity: 0.7;
    cursor: default;
    position: relative;
}

.coming-soon-text::after {
    content: ' (Coming Soon)';
    font-size: 0.75rem;
    color: #999999;
    font-weight: 300;
}

/* Disable text animation in hero section */
.text.state-2 {
    display: none !important;
}

.text.state-1 {
    display: flex !important;
}

.text span::before {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
}

.text span::after {
    opacity: 0 !important;
    animation: none !important;
}

.area-wrapper:hover .text span::before {
    animation: none !important;
}

.area-wrapper:hover .text span::after {
    animation: none !important;
}

