* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #4FC3F7;
    --blue-dark: #0288D1;
    --silver: #C0C0C0;
    --silver-dark: #8A8A8A;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --bg-dark: #1A1A1A;
    --bg-card: #212121;
    --text-primary: #FFFFFF;
    --text-muted: #B0B0B0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(79, 195, 247, 0.2);
    z-index: 1000;
    padding: 1rem 2rem;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--blue);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 8rem 2rem 4rem 4rem;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Top Right Badges */
.hero-badges {
    position: absolute;
    top: 100px;
    right: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge-row {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(79, 195, 247, 0.3);
    transition: all 0.3s ease;
}

.badge-row:hover {
    border-color: var(--blue);
    background: rgba(0, 0, 0, 0.85);
    transform: translateX(-5px);
}

.badge-item {
    flex-shrink: 0;
}

.badge-item img {
    height: 40px;
    width: auto;
    display: block;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-text h4 {
    color: var(--blue);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.badge-text p {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.3;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 700px;
}

.hero-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-content .subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--silver);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--blue);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

/* About Section */
.about {
    background: var(--bg-dark);
    padding: 6rem 2rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--blue);
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Services */
.services {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--blue);
    margin-bottom: 3rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--blue);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--blue);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.card-tool-logo {
    height: 32px;
    width: auto;
    margin-bottom: 1rem;
}

.card-platforms {
    font-size: 0.8rem;
    color: var(--blue);
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.card-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin: 1.25rem 0 0.75rem;
}

.featured-card {
    border-color: var(--blue);
    background: #1e2a33;
}

.order-btn-solid {
    background: var(--blue);
    color: var(--black);
    border-color: var(--blue);
}

.order-btn-solid:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--black);
}

@media (max-width: 968px) {
    .three-col {
        grid-template-columns: 1fr;
    }
}

.order-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--blue);
    border-radius: 4px;
    color: var(--blue);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    width: 100%;
}

.order-btn:hover {
    background: var(--blue);
    color: var(--black);
    transform: translateY(-2px);
}

/* Gallery */
.gallery {
    background: var(--bg-dark);
    padding: 6rem 2rem;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--blue);
    margin-bottom: 3rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid rgba(79, 195, 247, 0.2);
}

.gallery-item video,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover video,
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 30px 15px 15px;
    color: var(--blue);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Contact Form */
.contact {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--blue);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 8px;
    padding: 3rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    color: var(--silver);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

input, select, textarea {
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.3);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--blue);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--blue);
    border: none;
    border-radius: 4px;
    color: var(--black);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.confirmation {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(79, 195, 247, 0.1);
    border: 1px solid var(--blue);
    border-radius: 4px;
    text-align: center;
    color: var(--blue);
}

/* Footer */
footer {
    background: var(--black);
    border-top: 1px solid rgba(79, 195, 247, 0.2);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 70px;
    width: auto;
}

.footer-email {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.footer-email:hover {
    color: var(--blue);
}

.footer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rise-icon {
    width: 10px;
    height: 10px;
    object-fit: contain;
}

.rise-link {
    color: #ff5967;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.001rem;
    transition: opacity 0.3s ease;
}

.rise-link:hover {
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--black);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        border-top: 1px solid rgba(79, 195, 247, 0.2);
    }

    .nav-links.active {
        left: 0;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
        justify-content: center;
    }

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

    .hero-badges {
        top: 80px;
        right: 15px;
        left: 15px;
        gap: 12px;
    }

    .badge-row {
        padding: 12px 15px;
    }

    .badge-item img {
        height: 32px;
    }

    .badge-text h4 {
        font-size: 0.85rem;
    }

    .badge-text p {
        font-size: 0.7rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .nav-logo img {
        height: 38px;
    }

    .hero-logo {
        max-width: 280px;
    }

    .footer-logo img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }

    .nav-logo img {
        height: 32px;
    }

    .hero-logo {
        max-width: 220px;
    }

    .footer-logo img {
        height: 50px;
    }

    .hero-badges {
        top: 70px;
        right: 10px;
        left: 10px;
        gap: 10px;
    }

    .badge-row {
        padding: 10px 12px;
        gap: 10px;
    }

    .badge-item img {
        height: 28px;
    }

    .badge-text h4 {
        font-size: 0.8rem;
    }

    .badge-text p {
        font-size: 0.65rem;
    }
}