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

:root {
    --primary: #0066ff;
    --dark: #0a0e27;
    --light: #f4f7fb;
    --accent: #00d4ff;
    --text: #2d3748;
    --border: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: 0.3s;
}

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1f3a 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.section-offset {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.offset-content {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    gap: 4rem;
    align-items: center;
}

.offset-left {
    flex: 1;
    padding-right: 3rem;
}

.offset-right {
    flex: 1;
}

.offset-right img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 800;
}

.section-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.bg-dark {
    background: var(--dark);
    color: white;
}

.bg-dark .section-title {
    color: white;
}

.bg-dark .section-text {
    color: rgba(255, 255, 255, 0.85);
}

.visual-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.grid-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.grid-item:hover {
    transform: translateY(-10px);
}

.grid-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    color: white;
}

.grid-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.asymmetric-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    gap: 3rem;
    align-items: flex-start;
}

.asym-main {
    flex: 2;
}

.asym-side {
    flex: 1;
    position: sticky;
    top: 100px;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.testimonial-box {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.pricing-reveal {
    background: linear-gradient(135deg, var(--primary) 0%, #0052cc 100%);
    padding: 6rem 2rem;
    color: white;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-grid {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    background: white;
    color: var(--dark);
    padding: 3rem 2rem;
    border-radius: 20px;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: scale(1.05);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-desc {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-section {
    background: var(--light);
    padding: 6rem 2rem;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    z-index: 999;
    transition: transform 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background: var(--accent);
    color: var(--dark);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.thanks-box {
    max-width: 600px;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.contact-info {
    background: var(--light);
    padding: 4rem 2rem;
}

.info-grid {
    max-width: 1000px;
    margin: 3rem auto 0;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-item {
    flex: 1 1 300px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.policy-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.policy-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--dark);
}

.policy-container p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.policy-container ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .offset-content {
        flex-direction: column;
    }

    .offset-left {
        padding-right: 0;
    }

    .asymmetric-section {
        flex-direction: column;
    }

    .asym-side {
        position: static;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
