:root {
    --steel-black: #0E0E11;
    --deep-black: #0E0E11;
    --industrial-grey: #A9ADB5;
    --signal-blue: #2563EB;
    --white: #FFFFFF;
    --grey-dark: #1a1a1f;
    --grey-light: #f5f5f7;
    --light-grey: #f5f5f7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--steel-black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(14, 14, 17, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 2px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    padding: 1.25rem 0;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    transition: transform 0.3s;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo i {
    color: var(--signal-blue);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.5));
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--industrial-grey);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--signal-blue);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--signal-blue);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.hero {
    min-height: 100vh;
    background: var(--steel-black);
    color: var(--white);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--industrial-grey);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--signal-blue);
    color: var(--white);
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--signal-blue);
    border-color: var(--signal-blue);
}

.btn-secondary:hover {
    background: var(--signal-blue);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--steel-black);
    border-color: var(--steel-black);
}

.btn-outline:hover {
    background: var(--steel-black);
    color: var(--white);
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
}

.feature-badge i {
    color: var(--signal-blue);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.4s both;
}

.camera-render {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.camera-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.camera-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.3));
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--industrial-grey);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.features {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--industrial-grey);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--grey-light);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--signal-blue);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--signal-blue);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--industrial-grey);
}

.products-preview {
    padding: 6rem 0;
    background: var(--grey-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: var(--grey-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--signal-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--industrial-grey);
    margin-bottom: 1rem;
}

.product-price {
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--signal-blue);
}

.text-center {
    text-align: center;
}

.cta-section {
    padding: 6rem 0;
    background: var(--steel-black);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--industrial-grey);
    margin-bottom: 2rem;
}

.footer {
    background: linear-gradient(180deg, var(--grey-dark) 0%, var(--steel-black) 100%);
    color: var(--white);
    padding: 4rem 0 0;
    border-top: 2px solid rgba(37, 99, 235, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Roboto Condensed', sans-serif;
}

.footer-logo i {
    color: var(--signal-blue);
}

.footer-col p {
    color: var(--industrial-grey);
    margin-bottom: 1.5rem;
}

.footer-company-info {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.company-info-section h5 {
    color: var(--signal-blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.company-info-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.25rem;
    word-break: break-word;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--industrial-grey);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    background: var(--steel-black);
    border-top: 1px solid rgba(169, 173, 181, 0.1);
    padding: 2rem 0;
    text-align: center;
    color: var(--industrial-grey);
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trust-section {
    padding: 5rem 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.trust-card {
    background: var(--grey-light);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trust-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.trust-card:hover .trust-image img {
    transform: scale(1.1);
}

.trust-content {
    padding: 2rem;
}

.trust-badge {
    display: inline-block;
    background: var(--signal-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.trust-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trust-content p {
    color: var(--industrial-grey);
    line-height: 1.8;
}

.page-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, var(--steel-black) 0%, var(--grey-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--industrial-grey);
    animation: fadeInUp 0.8s ease 0.2s both;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.page-hero-breadcrumb a {
    color: var(--industrial-grey);
    text-decoration: none;
    transition: color 0.3s;
}

.page-hero-breadcrumb a:hover {
    color: var(--white);
}

.page-hero-breadcrumb i {
    color: var(--signal-blue);
    font-size: 0.7rem;
}

.page-hero-breadcrumb span {
    color: var(--white);
}

.how-it-works {
    padding: 6rem 0;
    background: var(--steel-black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s;
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -2rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--signal-blue), transparent);
    transform: translateY(-50%);
}

.step-card:last-child::before {
    display: none;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--signal-blue);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--signal-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: 'Roboto Condensed', sans-serif;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--industrial-grey);
    line-height: 1.6;
}

.showcase-section {
    padding: 6rem 0;
    background: var(--grey-light);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.showcase-grid:nth-child(even) {
    direction: rtl;
}

.showcase-grid:nth-child(even) > * {
    direction: ltr;
}

.showcase-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.showcase-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.showcase-image:hover img {
    transform: scale(1.05);
}

.showcase-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--signal-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.showcase-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.showcase-content p {
    color: var(--industrial-grey);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.showcase-features {
    list-style: none;
    margin-bottom: 2rem;
}

.showcase-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(169, 173, 181, 0.2);
}

.showcase-features li:last-child {
    border-bottom: none;
}

.showcase-features i {
    color: var(--signal-blue);
    font-size: 1.25rem;
}

.testimonials-section {
    padding: 6rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--grey-light);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--signal-blue);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--steel-black);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--industrial-grey);
}

.rating {
    color: #fbbf24;
    margin-top: 1rem;
}

.partners-section {
    padding: 4rem 0;
    background: var(--steel-black);
    text-align: center;
}

.partners-section h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    max-height: 50px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.partner-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--steel-black);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card::before {
        display: none;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid:nth-child(even) {
        direction: ltr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .company-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-company-info {
        padding: 1.5rem;
    }

    .company-info-section h5 {
        font-size: 0.8rem;
    }

    .company-info-section p {
        font-size: 0.85rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .company-info-section p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}


