.logo-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    box-shadow: 0 2px 8px rgba(33,150,243,0.10);
}
.logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}
.price-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.old-price {
    color: #b0bec5;
    font-size: 1.2rem;
    font-weight: 500;
    background: #fff2;
    padding: 4px 12px;
    border-radius: 8px;
}
.arrow {
    font-size: 1.7rem;
    color: #2196f3;
    font-weight: bold;
}
.price {
    color: #2196f3;
    font-size: 2rem;
    font-weight: 700;
    background: #e3f2fd;
    padding: 6px 18px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(33,150,243,0.10);
}
.company-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fff;
}
.company {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #fff;
}
.corporate-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.desc {
    font-size: 1.1rem;
    color: #e3f2fd;
    margin-bottom: 18px;
}
.benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    color: #bbdefb;
    font-size: 1rem;
    text-align: left;
}
.benefits li {
    margin-bottom: 6px;
    padding-left: 0;
}
.old-price {
    font-size: 1.2rem;
    color: #90a4ae;
    text-decoration: line-through;
    font-weight: 400;
    letter-spacing: 1px;
}
.price {
    font-size: 2.1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #2196f3 60%, #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}
.discount {
    color: #43a047;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 6px;
    letter-spacing: 1px;
}
    border-radius: 8px;
}
.price-block {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.old-price {
    font-size: 1.2rem;
    color: #90a4ae;
    text-decoration: line-through;
    font-weight: 400;
}
.price {
    font-size: 2.1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #2196f3 60%, #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price span {
    font-size: 1rem;
    color: #fff;
    background: none;
    -webkit-text-fill-color: inherit;
}
.offer-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.offer-form label {
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
}
.offer-form input {
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    background: #e3f2fd;
    color: #1a237e;
    font-weight: 600;
    width: 180px;
    margin-top: 4px;
}
.offer-form input:focus {
    outline: 2px solid #2196f3;
}
.offer-btn {
    display: inline-block;
    background: #2196f3;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(33,150,243,0.25);
    transition: background 0.2s, transform 0.2s;
    margin-top: 6px;
    border: none;
    cursor: pointer;
}
.offer-btn:hover {
    background: #1565c0;
    transform: translateY(-2px) scale(1.04);
}
.contact-btn {
    display: inline-block;
    background: #1565c0;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(33,150,243,0.15);
    transition: background 0.2s, transform 0.2s;
}
.contact-btn:hover {
    background: #2196f3;
    transform: scale(1.04);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    background: #1a237e;
    min-height: 100vh;
    color: #fff;
}

.top-bar {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 20, 60, 0.85);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.company {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.contact-info {
    display: flex;
    gap: 30px;
    font-size: 1rem;
    align-items: center;
}

.main-content {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=800&q=80') center center/cover no-repeat;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(26, 35, 126, 0.85);
    z-index: 1;
}

.center-box {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 60px 40px 40px 40px;
    box-shadow: 0 8px 32px rgba(26,35,126,0.25);
    max-width: 420px;
    margin: auto;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.domain {
    color: #2196f3;
    font-weight: 700;
    font-size: 1.7rem;
    background: linear-gradient(90deg, #2196f3 60%, #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price {
    font-size: 2.1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #2196f3 60%, #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    color: #fff;
    background: none;
    -webkit-text-fill-color: inherit;
}

.offer-btn {
    display: inline-block;
    background: #2196f3;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 38px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(33,150,243,0.25);
    transition: background 0.2s, transform 0.2s;
    margin-top: 10px;
}
.offer-btn:hover {
    background: #1565c0;
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 600px) {
    .top-bar {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    .center-box {
        padding: 30px 10px 20px 10px;
        max-width: 95vw;
    }
    h1 {
        font-size: 1.3rem;
    }
    h2 {
        font-size: 1.1rem;
    }
    .price {
        font-size: 1.3rem;
    }
    .offer-btn {
        font-size: 1rem;
        padding: 12px 20px;
    }
}