@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600;700&family=Teko:wght@400;500;600;700&display=swap');

:root {
    --ice-dark: #0B0E11;
    --graphite: #161A1E;
    --cold-white: #E5E8EB;
    --grey-blue: #A8AFB8;
    --glacier: #4FA3D1;
    --tech-blue: #4782FF;
    --premium-gold: #D2A86B;
    --stone: #37494F;
    --eternal-ice: #2B363B;
    --alpine-shadow: #46545A;
    --rescue-red: #D9513C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter Tight', sans-serif;
    background-color: var(--ice-dark);
    color: var(--cold-white);
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Teko', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

h1 {
    font-size: clamp(54px, 8vw, 104px);
    line-height: 1.1;
}

h2 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.2;
}

h3 {
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--glacier);
    border-color: var(--glacier);
    color: var(--ice-dark);
}

.btn-primary:hover {
    background: transparent;
    color: var(--glacier);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border-color: var(--cold-white);
    color: var(--cold-white);
}

.btn-secondary:hover {
    background: var(--cold-white);
    color: var(--ice-dark);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(11, 14, 17, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Teko', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--cold-white);
}

.logo span {
    color: var(--glacier);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav a {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--glacier);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    font-size: 20px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--rescue-red);
    color: var(--cold-white);
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--cold-white);
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img, .hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 14, 17, 0.7) 0%, rgba(43, 54, 59, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 700px;
}

.hero-text h1 {
    margin-bottom: 30px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 20px;
    color: var(--grey-blue);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-product-card {
    background: rgba(22, 26, 30, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px;
    border: 1px solid rgba(168, 175, 184, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-product-card:hover {
    border-color: var(--glacier);
    transform: translateX(-10px);
}

.hero-product-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.hero-product-card p {
    font-size: 14px;
    color: var(--grey-blue);
}

.snow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    color: var(--grey-blue);
    max-width: 700px;
    margin: 0 auto;
}

.about-section {
    background: var(--graphite);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--grey-blue);
}

.about-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid var(--alpine-shadow);
}

.categories-section {
    background: var(--ice-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--alpine-shadow);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(11, 14, 17, 0.95) 0%, transparent 100%);
}

.category-overlay h3 {
    margin-bottom: 10px;
}

.category-overlay p {
    color: var(--grey-blue);
    font-size: 16px;
}

.tech-section {
    background: var(--graphite);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tech-card {
    background: var(--ice-dark);
    padding: 40px;
    border: 1px solid var(--alpine-shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: var(--glacier);
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 48px;
    color: var(--glacier);
    margin-bottom: 20px;
}

.tech-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.tech-card p {
    color: var(--grey-blue);
    font-size: 16px;
}

.video-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.video-content h2 {
    font-size: clamp(48px, 6vw, 88px);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
}

.gallery-section {
    background: var(--ice-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 400px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.blog-section {
    background: var(--graphite);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--ice-dark);
    border: 1px solid var(--alpine-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    border-color: var(--glacier);
    transform: translateY(-5px);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    margin-bottom: 15px;
}

.blog-content p {
    color: var(--grey-blue);
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--grey-blue);
}

.testimonials-section {
    background: var(--ice-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--graphite);
    padding: 40px;
    border: 1px solid var(--alpine-shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--glacier);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text {
    margin-bottom: 30px;
    font-style: italic;
    color: var(--grey-blue);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--glacier);
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--grey-blue);
}

.cta-section {
    background: linear-gradient(135deg, var(--eternal-ice) 0%, var(--ice-dark) 100%);
    text-align: center;
    padding: 150px 0;
}

.cta-section h2 {
    margin-bottom: 30px;
}

.cta-section p {
    color: var(--grey-blue);
    margin-bottom: 40px;
    font-size: 20px;
}

footer {
    background: var(--graphite);
    padding: 80px 0 30px;
    border-top: 1px solid var(--alpine-shadow);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    margin-bottom: 25px;
    font-size: 24px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a:hover {
    color: var(--glacier);
}

.footer-about p {
    color: var(--grey-blue);
    margin-bottom: 20px;
}

.footer-company-info {
    border-top: 1px solid var(--alpine-shadow);
    padding-top: 30px;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.company-info-section h4 {
    color: var(--glacier);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.company-info-section p {
    color: var(--grey-blue);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 6px;
}

.footer-disclaimer {
    border-top: 1px solid var(--alpine-shadow);
    padding-top: 30px;
    margin-top: 30px;
}

.footer-disclaimer p {
    color: var(--grey-blue);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid var(--alpine-shadow);
    padding-top: 30px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--grey-blue);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: var(--grey-blue);
}

.footer-links a:hover {
    color: var(--glacier);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 14, 17, 0.95);
    z-index: 2000;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--graphite);
    max-width: 900px;
    width: 90%;
    margin: 40px auto;
    border: 2px solid var(--alpine-shadow);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: var(--cold-white);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ice-dark);
    border: 1px solid var(--alpine-shadow);
}

.modal-close:hover {
    color: var(--glacier);
    border-color: var(--glacier);
}

@media (max-width: 1024px) {
    nav ul {
        gap: 25px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--graphite);
        padding: 80px 30px;
        transition: right 0.3s ease;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}


.about-hero {
    padding: 80px 0 60px;
    background: var(--graphite);
    text-align: center;
}

.about-hero h1 {
    margin-bottom: 20px;
}

.about-hero p {
    color: var(--grey-blue);
    font-size: 20px;
}

.about-story {
    padding: 100px 0;
}

.about-story .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story .about-text h2 {
    margin-bottom: 30px;
}

.about-story .about-text p {
    margin-bottom: 25px;
    color: var(--grey-blue);
    line-height: 1.9;
}

.about-story .about-image img {
    width: 100%;
    height: auto;
    border: 3px solid var(--alpine-shadow);
}

.values-section {
    padding: 100px 0;
    background: var(--graphite);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-card {
    background: var(--ice-dark);
    padding: 50px 30px;
    border: 2px solid var(--alpine-shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--glacier);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 56px;
    color: var(--glacier);
    margin-bottom: 25px;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.value-card p {
    color: var(--grey-blue);
    line-height: 1.8;
}

.team-section {
    padding: 100px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.team-member {
    text-align: center;
    background: var(--graphite);
    padding: 40px;
    border: 2px solid var(--alpine-shadow);
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--glacier);
    transform: translateY(-5px);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--glacier);
    margin: 0 auto 25px;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 10px;
    font-size: 26px;
}

.team-member p {
    color: var(--grey-blue);
    margin-bottom: 10px;
}

.team-bio {
    font-size: 14px;
    font-style: italic;
}

@media (max-width: 1024px) {
    .about-story .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
