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

:root {
    --primary: #0A2540;
    --accent: #00D4FF;
    --secondary: #1E3A5F;
    --text: #2D3748;
    --light-bg: #F7FAFC;
    --white: #FFFFFF;
    --gray: #718096;
    --dark: #1A202C;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

nav a:hover {
    color: var(--accent);
}

.hero-minimal {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 4rem 4rem;
    background: linear-gradient(135deg, #0A2540 0%, #1E3A5F 100%);
    position: relative;
}

.hero-content-centered {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--white);
}

.hero-minimal h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 3rem;
    letter-spacing: -2px;
}

.hero-minimal p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--white);
    border-radius: 8px;
    transition: all 0.3s;
    margin-left: 1rem;
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.section-spacious {
    padding: 12rem 4rem;
}

.section-minimal {
    padding: 10rem 4rem;
    background: var(--white);
}

.section-dark {
    padding: 10rem 4rem;
    background: var(--primary);
    color: var(--white);
}

.section-light {
    padding: 10rem 4rem;
    background: var(--light-bg);
}

.section-title-large {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6rem;
    letter-spacing: -1.5px;
    text-align: center;
}

.section-title-minimal {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.features-minimal {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.feature-block:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-visual {
    flex: 1;
    height: 400px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 12px;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.feature-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
}

.services-grid-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-minimal {
    flex: 1 1 calc(50% - 2rem);
    min-width: 400px;
    padding: 4rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card-minimal:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card-minimal h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.service-card-minimal p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2rem;
}

.service-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 2rem;
}

.service-price span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gray);
}

.form-section-minimal {
    max-width: 700px;
    margin: 0 auto;
    padding: 6rem 4rem;
    background: var(--white);
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    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(--accent);
}

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

button[type="submit"] {
    width: 100%;
    padding: 1.5rem;
    background: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

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

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

footer {
    padding: 6rem 4rem 3rem;
    background: var(--dark);
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 37, 64, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem 4rem;
    z-index: 10000;
    display: none;
    border-top: 2px solid var(--accent);
}

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

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

.cookie-text {
    flex: 1;
    color: var(--white);
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-accept:hover,
.cookie-reject:hover {
    transform: translateY(-2px);
}

.testimonial-section {
    padding: 8rem 4rem;
    background: var(--light-bg);
}

.testimonial-grid {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    padding: 3rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text);
}

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

.stats-section {
    padding: 8rem 4rem;
    background: var(--primary);
    color: var(--white);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-page {
    padding: 10rem 4rem 6rem;
    min-height: 100vh;
}

.content-page h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--primary);
}

.content-page h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: var(--primary);
}

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

.content-page ul,
.content-page ol {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.9;
}

.content-page li {
    margin-bottom: 0.8rem;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .header-content {
        padding: 1.5rem 2rem;
    }

    .hero-minimal h1 {
        font-size: 3.5rem;
    }

    .feature-block {
        flex-direction: column !important;
        gap: 3rem;
    }

    .services-grid-minimal {
        flex-direction: column;
    }

    .service-card-minimal {
        min-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .testimonial-grid {
        flex-direction: column;
    }

    .stats-grid {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

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

    .hero-minimal p {
        font-size: 1.2rem;
    }

    .section-title-large {
        font-size: 2.5rem;
    }

    .section-spacious,
    .section-minimal,
    .section-dark,
    .section-light {
        padding: 5rem 2rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem 1.5rem;
    }
}