* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --wonder-primary: #1a237e;
    --wonder-primary-light: #283593;
    --wonder-primary-dark: #0d47a1;
    --wonder-secondary: #7b1fa2;
    --wonder-accent: #ff9800;
    --wonder-accent-light: #ffc107;
    --wonder-cyan: #00bcd4;
    --wonder-text-dark: #1a1a1a;
    --wonder-text-light: #666666;
    --wonder-text-white: #ffffff;
    --wonder-bg-light: #f8f9fa;
    --wonder-bg-white: #ffffff;
    --wonder-border: #e0e0e0;
    --wonder-shadow: rgba(0, 0, 0, 0.1);
    --wonder-shadow-hover: rgba(0, 0, 0, 0.15);
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--wonder-text-dark);
    background-color: var(--wonder-bg-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100%;
}

.wonder-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.wonder-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--wonder-shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.wonder-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.wonder-logo {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--wonder-primary);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.wonder-header .wonder-logo {
    font-size: 20px;
}

.wonder-footer .wonder-logo {
    color: var(--wonder-text-white);
    margin-bottom: 20px;
}

.wonder-logo:hover {
    color: var(--wonder-secondary);
}

.wonder-nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.wonder-nav-link {
    text-decoration: none;
    color: var(--wonder-text-dark);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.wonder-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--wonder-primary), var(--wonder-secondary));
    transition: width 0.3s ease;
}

.wonder-nav-link:hover,
.wonder-nav-link.wonder-active {
    color: var(--wonder-primary);
}

.wonder-nav-link:hover::after,
.wonder-nav-link.wonder-active::after {
    width: 100%;
}

.wonder-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.wonder-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--wonder-primary);
    transition: all 0.3s ease;
}

.wonder-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #7b1fa2 100%);
    overflow: hidden;
}

.wonder-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.wonder-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

.wonder-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--wonder-cyan);
    top: -200px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.wonder-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--wonder-accent);
    bottom: -150px;
    left: -100px;
    animation: float 25s infinite ease-in-out reverse;
}

.wonder-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--wonder-secondary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 30s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.wonder-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.wonder-hero-text {
    color: var(--wonder-text-white);
}

.wonder-hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wonder-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.wonder-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.wonder-hero-image {
    position: relative;
}

.wonder-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.wonder-hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.wonder-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.wonder-btn-primary {
    background: linear-gradient(135deg, var(--wonder-accent) 0%, var(--wonder-accent-light) 100%);
    color: var(--wonder-text-white);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
}

.wonder-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.4);
}

.wonder-btn-secondary {
    background: transparent;
    color: var(--wonder-text-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.wonder-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--wonder-text-white);
}

.wonder-btn-outline {
    background: transparent;
    color: var(--wonder-primary);
    border: 2px solid var(--wonder-primary);
}

.wonder-btn-outline:hover {
    background: var(--wonder-primary);
    color: var(--wonder-text-white);
}

.wonder-btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.wonder-advantages {
    padding: 100px 0;
    background: var(--wonder-bg-light);
}

.wonder-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.wonder-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--wonder-text-dark);
    margin-bottom: 16px;
}

.wonder-section-description {
    font-size: 18px;
    color: var(--wonder-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.wonder-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.wonder-advantage-card {
    background: var(--wonder-bg-white);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--wonder-shadow);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.wonder-advantage-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.wonder-advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wonder-primary), var(--wonder-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.wonder-advantage-card.visible:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--wonder-shadow-hover);
}

.wonder-advantage-card:hover::before {
    transform: scaleX(1);
}

.wonder-advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--wonder-primary) 0%, var(--wonder-secondary) 100%);
    border-radius: 50%;
    color: var(--wonder-text-white);
    transition: all 0.3s ease;
}

.wonder-advantage-icon .material-icons {
    font-size: 40px;
    line-height: 1;
}

.wonder-advantage-card:hover .wonder-advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.3);
}

.wonder-advantage-title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--wonder-text-dark);
    margin-bottom: 16px;
}

.wonder-advantage-text {
    font-size: 16px;
    color: var(--wonder-text-light);
    line-height: 1.6;
}

.wonder-products {
    padding: 100px 0;
    background: var(--wonder-bg-white);
}

.wonder-products-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.wonder-product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.wonder-product-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.wonder-product-reverse {
    direction: rtl;
}

.wonder-product-reverse > * {
    direction: ltr;
}

.wonder-product-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--wonder-shadow);
}

.wonder-product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.wonder-product-image:hover img {
    transform: scale(1.1);
}

.wonder-product-content {
    padding: 20px;
}

.wonder-product-title {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--wonder-primary);
    margin-bottom: 20px;
}

.wonder-product-description {
    font-size: 18px;
    color: var(--wonder-text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.wonder-product-features {
    list-style: none;
    margin-bottom: 30px;
}

.wonder-product-features li {
    font-size: 16px;
    color: var(--wonder-text-dark);
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.wonder-product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wonder-accent);
    font-weight: bold;
    font-size: 18px;
}

.wonder-statistics {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--wonder-primary) 0%, var(--wonder-primary-light) 50%, var(--wonder-secondary) 100%);
    color: var(--wonder-text-white);
}

.wonder-statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    text-align: center;
}

.wonder-stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.wonder-stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.wonder-stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wonder-stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.wonder-application {
    padding: 100px 0;
    background: var(--wonder-bg-light);
}

.wonder-application-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.wonder-application-title {
    font-family: 'Roboto', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--wonder-text-dark);
    margin-bottom: 24px;
}

.wonder-application-description {
    font-size: 18px;
    color: var(--wonder-text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.wonder-application-features {
    margin-bottom: 40px;
}

.wonder-application-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--wonder-text-dark);
}

.wonder-check-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--wonder-accent) 0%, var(--wonder-accent-light) 100%);
    color: var(--wonder-text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.wonder-check-icon .material-icons {
    font-size: 20px;
    line-height: 1;
}

.wonder-application-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.wonder-application-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--wonder-shadow);
}

.wonder-application-image img {
    width: 100%;
    height: auto;
    display: block;
}

.wonder-footer {
    background: var(--wonder-text-dark);
    color: var(--wonder-text-white);
    padding: 80px 0 30px;
}

.wonder-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.wonder-footer-section {
    padding: 0 20px;
}

.wonder-footer-text {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.wonder-footer-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--wonder-text-white);
}

.wonder-footer-links {
    list-style: none;
}

.wonder-footer-links li {
    margin-bottom: 12px;
}

.wonder-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wonder-footer-links a:hover {
    color: var(--wonder-accent);
}

.wonder-footer-contact {
    list-style: none;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.wonder-footer-contact li {
    margin-bottom: 12px;
}

.wonder-footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wonder-footer-contact a:hover {
    color: var(--wonder-accent);
}

.wonder-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.wonder-footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

.wonder-footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wonder-footer-bottom a:hover {
    color: var(--wonder-accent);
}

@media (max-width: 968px) {
    .wonder-container {
        padding: 0 30px;
    }

    .wonder-nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--wonder-bg-white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 30px var(--wonder-shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        display: flex;
    }

    .wonder-nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .wonder-nav-link {
        padding: 15px 0;
        font-size: 18px;
        border-bottom: 1px solid var(--wonder-border);
    }

    .wonder-nav-link:last-child {
        border-bottom: none;
    }

    .wonder-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .wonder-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .wonder-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .wonder-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .wonder-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wonder-hero-title {
        font-size: 42px;
    }

    .wonder-product-item {
        grid-template-columns: 1fr;
    }

    .wonder-product-reverse {
        direction: ltr;
    }

    .wonder-application-content {
        grid-template-columns: 1fr;
    }

    .wonder-section-title {
        font-size: 36px;
    }

    .wonder-stat-number {
        font-size: 48px;
    }
}

@media (max-width: 640px) {
    .wonder-container {
        padding: 0 20px;
    }

    .wonder-hero-title {
        font-size: 32px;
    }

    .wonder-hero-subtitle {
        font-size: 16px;
    }

    .wonder-section-title {
        font-size: 28px;
    }

    .wonder-advantages-grid {
        grid-template-columns: 1fr;
    }

    .wonder-statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .wonder-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wonder-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .wonder-privacy-content {
        flex-direction: column;
        gap: 20px;
    }

    .wonder-privacy-buttons {
        width: 100%;
        flex-direction: column;
    }

    .wonder-privacy-btn {
        width: 100%;
    }
}

.wonder-privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--wonder-bg-white);
    box-shadow: 0 -4px 30px var(--wonder-shadow-hover);
    z-index: 2000;
    padding: 30px 40px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--wonder-primary);
}

.wonder-privacy-banner.show {
    transform: translateY(0);
}

.wonder-privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.wonder-privacy-text {
    flex: 1;
}

.wonder-privacy-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--wonder-text-dark);
    margin-bottom: 12px;
}

.wonder-privacy-description {
    font-size: 15px;
    color: var(--wonder-text-light);
    line-height: 1.6;
}

.wonder-privacy-link {
    color: var(--wonder-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.wonder-privacy-link:hover {
    color: var(--wonder-secondary);
    text-decoration: underline;
}

.wonder-privacy-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.wonder-privacy-btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.wonder-privacy-accept {
    background: linear-gradient(135deg, var(--wonder-primary) 0%, var(--wonder-primary-light) 100%);
    color: var(--wonder-text-white);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.wonder-privacy-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
}

.wonder-privacy-decline {
    background: transparent;
    color: var(--wonder-text-dark);
    border: 2px solid var(--wonder-border);
}

.wonder-privacy-decline:hover {
    background: var(--wonder-bg-light);
    border-color: var(--wonder-text-light);
}

@media (max-width: 768px) {
    .wonder-privacy-banner {
        padding: 24px 20px;
    }

    .wonder-privacy-content {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .wonder-privacy-buttons {
        width: 100%;
        flex-direction: column;
    }

    .wonder-privacy-btn {
        width: 100%;
    }

    .wonder-privacy-title {
        font-size: 18px;
    }

    .wonder-privacy-description {
        font-size: 14px;
    }
}
