html {

    scroll-behavior: smooth;

}
body {
    background: linear-gradient(to bottom, #000000, #0a1f44);
    color: gold;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin: 0;
    overflow-x: hidden;
   

}
h1 {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFD700;

    display: inline-block;

    padding: 2px 18px;

    background: rgba(0,0,0,0.10);

    border-radius: 8px;

    text-shadow:
    0 3px 12px rgba(0,0,0,0.45);

    margin-bottom: 18px;

    backdrop-filter: blur(4px);
}
p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
    letter-spacing: 0.5px;
    max-width: 700px;
    line-height: 1.5;

    background: rgba(0,0,0,0.10);

    display: inline-block;

    padding: 8px 16px;

    border-radius: 999px;

    backdrop-filter: blur(4px);

    margin-bottom: 24px;
}
    button {
    background: linear-gradient(135deg, #FFD700, #ffcc00);
    color: black;
    border: none;

    padding: 16px 40px;

    font-size: 18px;
    font-weight: 800;

    border-radius: 999px;

    cursor: pointer;

    box-shadow:
    0 10px 25px rgba(255,215,0,0.35),
    inset 0 2px 8px rgba(255,255,255,0.45);

    transition: all 0.3s ease;
}
    button:hover {
    transform: translateY(-6px) scale(1.07);

    filter: brightness(1.08);
    letter-spacing: 1px;

    box-shadow:
    0 15px 35px rgba(255,215,0,0.45),
    0 0 25px rgba(255,215,0,0.25);
}

.hero {

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 140px;

    background-image: url("images/hero-desktop.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;

    position: relative;
    animation: heroFloat 8s ease-in-out infinite;
    padding-bottom: 80px; 
} 

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.60);
    pointer-events: none;
    }
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0),
        rgba(0,0,0,0.85)
    );

    pointer-events: none;
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-inline: auto;
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    gap: 18px;

    padding-top: 20px;
    padding-bottom: 20px;
    }   
    @keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes floatIn {

    from {

        opacity: 0;

        transform: translateY(200px) scale(0.7);

    }

    to {

        opacity: 1;

        transform: translateY(0) scale(1);

    }

}

 .hero-content h1 {
    opacity: 0;
    animation: fadeUp 1s ease forwards;

    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 2px;

    max-width: none;
    margin-inline: auto;
    text-align: left;
    line-height: 0.95;

    color: #FFD700;
    text-shadow:
    0 2px 10px rgba(255,215,0,0.35),
    0 6px 30px rgba(255,215,0,0.25);
}
.hero-content p {

    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;

    font-size: 1.2rem;
    font-weight: 600;

   background: rgba(0, 35, 120, 0.28);
    padding: 12px 22px;
    border-radius: 999px;

    backdrop-filter: blur(10px);

    text-shadow:
    0 2px 10px rgba(0,0,0,0.8);

    font-size: 1.15rem;

    max-width: 700px;

    line-height: 1.6;

    }
.hero-content button {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.6s;

    background: linear-gradient(
    to right,
    #fff6cc,
    #FFD700,
    #caa400
    );

    border: none;

    color: #111;

    font-weight: 800;
    letter-spacing: 1px;

    padding: 16px 38px;
    border-radius: 999px;

    box-shadow:
    0 10px 30px rgba(255,215,0,0.35);

    transition: all 0.3s ease;
    }

.hero-content button:hover {

    transform: translateY(-3px) scale(1.03);

    box-shadow:
    0 16px 40px rgba(255,215,0,0.45);
 
    }
    @keyframes heroFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
    
    }
nav {
    position: relative;

    top: 0;
    left: 0;
    width: 100%;
    margin-bottom: 0;
    padding: 18px 48px;

    display: flex;
    justify-content: flex-start;
    gap: 36px;
    align-items: center;

    z-index: 10;
    box-sizing: border-box;

    background: rgba(5, 10, 25, 0.72);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 10px 40px rgba(0,0,0,0.35);

    border-radius: 0 0 22px 22px;
    }

ul li a:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255,215,0,0.7);
    }

ul li a:hover::after {
    width: 100%;
    }
    

.logo {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
    }
    .menu-toggle {
    display: none;
    font-size: 32px;
    color: #FFD700;
    cursor: pointer;
    margin-left: auto;
    }
ul {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;

    margin: 0;
    padding: 0;

    flex-wrap: wrap;
    }

ul li a {
    color: white;
    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;

    padding-bottom: 6px;

    position: relative;

    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    }


    ul li a::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: 0;

    width: 0%;
    height: 2px;

    background: #FFD700;

    transition: width 0.3s ease;
    }

ul li a:hover {
    color: #FFD700;

    text-shadow:
        0 0 8px rgba(255,215,0,0.6),
        0 0 18px rgba(255,215,0,0.4);
    }
ul li a:hover::after {
    width: 100%;
    }
 @media (max-width: 768px) {

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hero {
        background-image: url("images/hero-mobile.jpg");
        background-position: center top;
    }

    .hero-content {
        margin-top: 100px;
    }

    nav ul {
        display: none !important;
    }

    .menu-toggle {
        display: block !important;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 999999;

        font-size: 42px;
        font-weight: 900;

        color: #FFD700;

        background: rgba(0,0,0,0.65);
        padding: 10px 16px;
        border-radius: 12px;

        border: 2px solid #FFD700;

        box-shadow:
            0 0 20px rgba(255,215,0,0.5);

        cursor: pointer;
    }

    }
.menu-toggle {
    display: block !important;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;

    font-size: 42px;
    font-weight: 900;

    color: #FFD700;

    background: rgba(0,0,0,0.65);
    padding: 10px 16px;
    border-radius: 12px;

    border: 2px solid #FFD700;

    cursor: pointer;
    }
.about {
    position: relative;
    padding: 20px 8%;
    background:
    linear-gradient(
        to bottom,
        #050816,
        #081120,
        #0d1730
    );
    }

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    height: 320px;
    max-width: 480px;

    overflow: hidden;
    border-radius: 30px;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    display: block;
}

.section-tag {
    display: inline-block;

    padding: 10px 20px;
    margin-bottom: 24px;

    border-radius: 999px;

    background: rgba(255,215,0,0.12);

    border: 1px solid rgba(255,215,0,0.3);

    color: #FFD700;

    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 700;
    }

.about-text h2 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 20px;

    color: white;
    }

.about-text p {
    font-size: 1.18rem;
    line-height: 1.4;

    color: rgba(255,255,255,0.78);

    max-width: 540px;

    margin-bottom: 36px;
}
.products {
    padding: 120px 8%;
    background:
    linear-gradient(
        to bottom,
        #0d1730,
        #060b18
    );
    }

.section-header {
    position: relative;

    z-index: 1;

    text-align: center;

    margin-bottom: 80px;
}

.section-header::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background: radial-gradient(
        circle,
        rgba(0,102,255,0.18),
        transparent 70%
    );

    top: -180px;

    left: 50%;

    transform: translateX(-50%);

    z-index: -1;

    filter: blur(60px);
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.05;

    color: white;

    margin-top: 24px;
    }

.product-grid {
    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));

    gap: 40px;
    }

.product-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {

    transform: translateY(-8px);

    border-color: rgba(255,215,0,0.5);

    box-shadow: 0 25px 60px rgba(0,0,0,0.45);

    }   

.product-card img {

    width: 100%;

    height: 220px;

    object-fit: cover;

    display: block;

    transition: all 0.5s ease;

}
.product-card:hover img {

    transform: scale(1.05);

    }

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: white;

    font-size: 1.5rem;

    margin-bottom: 16px;
    }

.product-info p {
    color: rgba(255,255,255,0.72);

    line-height: 1.7;

    margin-bottom: 18px;}
.social-proof {
    padding: 140px 8%;
    text-align: center;

    background:
    linear-gradient(
        to bottom,
        #020617,
        #031b4e
    );
    padding-top: 140px;
    padding-bottom: 140px;
    }

.social-proof h2 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.1;
    max-width: 900px;

    margin:
    30px auto 70px;

    color: white;
    }

.proof-grid {
    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(240px, 1fr));

    gap: 30px;
    }

.proof-card {
    padding: 50px 30px;

    border-radius: 28px;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(14px);

    transition: 0.35s ease;
    }

.proof-card:hover {
    transform:
    translateY(-8px);

    border-color:
    rgba(255,215,0,0.4);

    box-shadow:
    0 0 35px rgba(255,215,0,0.18);
    }

.proof-card h3 {
    font-size: 3rem;

    color: #FFD700;

    margin-bottom: 16px;
    }

.proof-card p {
    color: rgba(255,255,255,0.8);

    font-size: 1.05rem;

    line-height: 1.7;
    }
.testimonials {
    padding: 50px 20px 40px;

    background:
    linear-gradient(
        to bottom,
        #031b4e,
        #020617
    );

    text-align: center;
    }

.testimonials h2 {
    font-size: clamp(2.8rem, 6vw, 5rem);

    line-height: 1.1;

    color: white;

    max-width: 900px;

    margin:
    30px auto 80px;
    }

.testimonial-grid {
    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;
    }

.testimonial-card {
    padding: 30px 24px;

    border-radius: 30px;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);

    transition: 0.35s ease;
    }

.testimonial-card:hover {
    transform:
    translateY(-10px);

    border-color:
    rgba(255,215,0,0.35);

    box-shadow:
    0 0 35px rgba(255,215,0,0.16);
    }

.testimonial-card p {
    color: white;

    font-size: 1.15rem;

    line-height: 1.9;

    margin-bottom: 30px;
    }

.testimonial-card h4 {
    color: #FFD700;

    font-size: 1rem;

    letter-spacing: 1px;
    }
.cta-section {
    padding: 60px 20px;

    background:
    linear-gradient(
        to bottom,
        #020617,
        #041d56
    );
    }
.cta-box {
    max-width: 950px;

    margin: auto;

    padding: 80px 60px;

    text-align: center;

    border-radius: 40px;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);

    box-shadow:
    0 0 60px rgba(0,0,0,0.35);
    }

.cta-box h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);

    line-height: 1.1;

    color: white;

    margin:
    30px auto;
    }

.cta-box p {
    color:
    rgba(255,255,255,0.78);

    font-size: 1.1rem;

    line-height: 1.9;

    max-width: 700px;

    margin:
    0 auto 50px;
    }

.cta-form {
    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
    }   

.cta-form input {
    width: 320px;

    padding: 18px 22px;

    border-radius: 999px;

    border:
    1px solid rgba(255,255,255,0.12);

    background:
    rgba(255,255,255,0.06);

    color: white;

    font-size: 1rem;

    outline: none;
    }

.cta-form input::placeholder {
    color:
    rgba(255,255,255,0.45);
    }

.cta-form button {
    padding: 18px 34px;

    border: none;

    border-radius: 999px;

    background:
    linear-gradient(
        135deg,
        #FFD700,
        #ffea70
    );

    color: #111;

    font-weight: 800;

    cursor: pointer;

    transition: 0.3s ease;

    box-shadow:
    0 0 30px rgba(255,215,0,0.3);
    }

.cta-form button:hover {
    transform:
    translateY(-4px);

    box-shadow:
    0 0 40px rgba(255,215,0,0.45);
    }
.footer {
    padding: 100px 8% 60px;

    text-align: center;

    background:
    linear-gradient(
        to bottom,
        #041d56,
        #020617
    );

    border-top:
    1px solid rgba(255,255,255,0.08);
    }

.footer-logo {
    font-size: 2rem;

    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 24px;

    background:
    linear-gradient(
        to bottom,
        #fff6cc,
        #FFD700,
        #caa400
    );

    -webkit-background-clip: text;

    color: transparent;

    -webkit-text-fill-color: transparent;
    }

.footer p {
    max-width: 700px;

    margin:
    0 auto 40px;

    color:
    rgba(255,255,255,0.72);

    line-height: 1.8;
}

.footer-links {
    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;

    margin-bottom: 40px;
}

.footer-links a {
    color: white;

    text-decoration: none;

    transition: 0.3s ease;

    font-weight: 600;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-copy {
    color:
    rgba(255,255,255,0.45);

    font-size: 0.95rem;
}
section {
    position: relative;
    
}
.mockup-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

    margin-top: 60px;

    position: relative;
    z-index: 2;

}
.mockup-grid img {

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    border-radius: 24px;

    border: 1px solid rgba(255,255,255,0.08);

    cursor: pointer;

    transition: all 0.5s ease;

    box-shadow:
    0 20px 40px rgba(0,0,0,0.45);

}
.mockup-grid img:hover {

    transform: translateY(-10px) scale(1.02);

    box-shadow:
    0 30px 70px rgba(0,0,0,0.6),
    0 0 35px rgba(255,215,0,0.18);

}
.mockup-grid img {

    animation: floatIn 1s ease forwards;

    opacity: 0;

}

.featured-mockup {
    padding: 160px 8%;
    position: relative;
    overflow: hidden;

    background:
    radial-gradient(
    circle at center,
    rgba(0,102,255,0.22),
    rgba(5,10,25,1) 72%
    );

    animation: floatIn 3s ease forwards;
    opacity: 0;
}
.featured-mockup::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
    radial-gradient(
    circle at top,
    rgba(255,215,0,0.12),
    transparent 45%
    );

    pointer-events: none;

}
.featured-mockup h2 {

    font-size: clamp(42px, 6vw, 72px);

    max-width: 900px;

    margin: 30px auto;

    line-height: 1.05;
    text-shadow:
    0 4px 18px rgba(0,0,0,0.45);

}
.featured-mockup p {

    max-width: 800px;

    margin: 0 auto 70px;

    line-height: 1.7;

    opacity: 0.85;

    text-shadow:
    0 2px 12px rgba(0,0,0,0.35);

}
section {

    position: relative;

}
section::after {

    content: "";

    position: absolute;

    bottom: 0;

    left: 50%;

    transform: translateX(-50%);

    width: 70%;

    height: 1px;

    background:
    linear-gradient(
        to right,
        transparent,
        rgba(255,215,0,0.25),
        transparent
    );

}
.split-section {

    max-width: 1200px;

    margin: 0 auto;

    text-align: left;

    padding: 140px 8%;

}
.split-section {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}
.split-image img {

    width: 100%;

    border-radius: 28px;

    box-shadow:
    0 30px 80px rgba(0,0,0,0.5);

}
.split-image {

    min-height: unset;

    display: flex;

    align-items: center;

    justify-content: center;

}
.split-image img {

    width: 100%;

    max-width: 520px;

}
body::before {

    content: "";

    position: fixed;

    width: 700px;

    height: 700px;

    background:
    radial-gradient(
        circle,
        rgba(0,102,255,0.18),
        transparent 70%
    );

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;

    z-index: -1;

    animation: floatGlow 12s ease-in-out infinite;

}
    @keyframes floatGlow {

    0% {

        transform:
        translate(-50%, -50%)
        scale(1);

    }

    50% {

        transform:
        translate(-48%, -52%)
        scale(1.1);

    }

    100% {

        transform:
        translate(-50%, -50%)
        scale(1);

    }

}
section {

    position: relative;

    z-index: 1;

}
section::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
    linear-gradient(
        to bottom,
        rgba(255,255,255,0.015),
        transparent
    );

    pointer-events: none;

    z-index: -1;

}
    @media (max-width: 768px) {
        section {
    padding: 60px 20px !important;
    }

    .hero {
    min-height: auto;
    padding-top: 120px !important;
    padding-bottom: 80px !important;
    }

    .testimonial-card,
    .cta-box,
    .product-card {
    padding: 24px !important;
    }

h1 {
    font-size: 2.8rem !important;
    }

h2 {
    font-size: 2rem !important;
    }

    h1 {

        font-size: 2.5rem;

        line-height: 1.1;

    }

    h2 {

        font-size: 2rem;

        line-height: 1.2;

    }

    p {

        font-size: 1rem;

        line-height: 1.6;

    }

    nav {

        padding: 12px 20px;

        gap: 16px;

        flex-wrap: wrap;

        justify-content: center;

    }

    .split-section,
    .about-container,
    .proof-grid,
    .mockup-grid {

        grid-template-columns: 1fr !important;

        flex-direction: column;

    }

    button {
    width: 100%;
    }

    section {

        padding-left: 20px;

        padding-right: 20px;

    }

    .hero-content {
    width: 90%;
    max-width: 100%;
    padding: 20px;
    }

    .product-grid,
    .mockup-grid {
    gap: 20px;
    }

footer p {
    font-size: 0.9rem;
    }

}