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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: white;
    background-color: #000;
    overflow-x: hidden;
}

.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/bg1.jpg) top center repeat;
    background-size: cover;
    z-index: -1;
    opacity: 0.9;
}

/* Шапка сайта */
.header {
    position: absolute;
    top: 40px;
    left: 80px;
    right: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    padding: 0;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-item {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #E62323;
}

.nav-item:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #E62323;
}
/* Общие стили */
.highlight-red {
    color: #E62323;
}

.lei {
    color: white;
    font-size: 30px;
    margin-left: 5px;
}

/* ================== ПЕРВАЯ СЕКЦИЯ ================== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 80px 80px;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.man-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 90%;
    width: 45%;
    max-width: 700px;
    background: url(../img/ded.png) center no-repeat;
    background-size: contain;
    background-position: right bottom;
    z-index: 3;
}

.main-title {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.title-line-1 {
    display: block;
    font-size: 56px;
    font-weight: 800;
}

.title-line-2 {
    display: block;
    font-size: 72px;
    font-weight: 900;
    color: white;
    letter-spacing: 1px;
}

.title-line-3 {
    display: block;
    font-size: 60px;
    font-weight: 800;
    color: #E62323;
}

.subtitle {
    font-size: 22px;
    font-weight: 500;
    color: white;
    margin-bottom: 50px;
    line-height: 1.4;
}

.price-block {
    position: relative;
    width: 100%;
    max-width: 1004px;
    height: 118px;
    margin: 0 auto 50px;
}

.price-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #636363;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.price-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.old-price-section {
    flex: 1;
    text-align: center;
    position: relative;
}

.new-price-section {
    flex: 1;
    text-align: center;
    position: relative;
}

.button-section {
    flex: 1;
    text-align: center;
}

.price-label {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.old-price-label {
    color: rgba(255, 255, 255, 0.5);
}

.new-price-label {
    color: #E62323;
}

.price-value {
    font-size: 45px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    display: block;
}

.old-price-value {
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    display: inline-block;
}

.old-price-value::after {
    content: '';
    position: absolute;
    width: 178px;
    height: 3px;
    background: #E64444;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(10deg);
}

.new-price-value {
    color: #E62323;
}

.price-arrow {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
}

.price-arrow::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 5px solid #E62323;
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.order-button {
    width: 475px;
    height: 82px;
    background: linear-gradient(91.13deg, #D61616 0.97%, #AA2424 114.23%);
    box-shadow: 0px 18px 10.5px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    padding-left: 60px;
    padding-right: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.order-button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 21px 12px rgba(0, 0, 0, 0.3);
}

.lightning-icon {
    position: absolute;
    left: 20px;
    width: 39px;
    height: 39px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.feature:hover {
    opacity: 1;
}

.feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    line-height: 1.3;
}

/* ================== ВТОРАЯ СЕКЦИЯ ================== */
.examples-section {
    position: relative;
    width: 100%;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.examples-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
    max-width: 1168px;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 60px;
    max-width: 627px;
}

.songs-container {
    display: flex;
    justify-content: center;
    gap: 47px;
    margin-bottom: 40px;
    width: 100%;
    flex-wrap: wrap;
}

.song-card {
    width: 364px;
    height: 375px;
    position: relative;
    flex-shrink: 0;
}

.song-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #636363;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    z-index: 1;
}

.song-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 44px 0 0;
}

.music-icon {
    width: 99px;
    height: 99px;
    margin-bottom: 32px;
    background: linear-gradient(141.19deg, #E62323 8.76%, #801414 133.7%);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-icon img {
    width: 50px;
    height: 50px;
}

.song-name {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 8px;
    width: 232px;
}

.song-occasion {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: #AFAFAF;
    margin-bottom: 30px;
    width: 232px;
}

.play-button {
    width: 284px;
    height: 57px;
    background: linear-gradient(91.13deg, #D61616 0.97%, #AA2424 114.23%);
    box-shadow: 0px 18px 10.5px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 21px 12px rgba(0, 0, 0, 0.3);
}

.play-button.playing {
    background: linear-gradient(91.13deg, #AA2424 0.97%, #D61616 114.23%);
}

.play-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon img {
    width: 100%;
    height: 100%;
}

.pause-icon {
    display: none;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
}

.play-button.playing .play-icon {
    display: none;
}

.play-button.playing .pause-icon {
    display: flex;
}

.order-section-bottom {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.order-button-large {
    width: 475px;
    height: 82px;
    background: #FFFFFF;
    box-shadow: 0px 18px 10.5px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    border: none;
    color: #D61616;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.order-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0px 21px 12px rgba(0, 0, 0, 0.35);
    background: #f0f0f0;
}

.lightning-icon-red {
    position: relative;
    width: 39px;
    height: 39px;
}

.lightning-icon-red img {
    width: 100%;
    height: 100%;
}

/* ================== ТРЕТЬЯ СЕКЦИЯ ================== */
.order-section {
    position: relative;
    width: 100%;
    padding: 100px 80px;
    display: flex;
    align-items: center;
}

.order-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.order-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.order-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.order-subtitle {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 60px;
}

.order-form-container {
    position: relative;
    width: 820px;
    min-height: 591px;
    margin-bottom: 40px;
}

.order-form-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #636363;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    z-index: 1;
}

.order-form {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 60px 55px 90px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-row {
    display: flex;
    gap: 26px;
    width: 100%;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-input {
    width: 100%;
    height: 58px;
    background: transparent;
    border: 1px solid rgba(221, 221, 221, 0.5);
    border-radius: 10px;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: #FFFFFF;
    opacity: 1;
}

.form-input:focus {
    border-color: #E62323;
}

.textarea {
    height: 175px;
    padding: 20px;
    resize: none;
    line-height: 1.5;
}

.textarea::placeholder {
    color: #9E9E9E;
}

.custom-select {
    position: relative;
}

.custom-select select {
    appearance: none;
    cursor: pointer;
    padding-right: 50px;
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 24px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: #D61616;
    display: block;
}

.price-value {
    font-size: 45px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    color: #D61616;
    display: block;
}

.submit-button {
    width: 475px;
    height: 82px;
    background: linear-gradient(91.13deg, #D61616 0.97%, #AA2424 114.23%);
    box-shadow: 0px 18px 10.5px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    padding-left: 60px;
    padding-right: 30px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 21px 12px rgba(0, 0, 0, 0.3);
}

.submit-button .lightning-icon {
    position: absolute;
    left: 20px;
    width: 39px;
    height: 39px;
}

.order-image {
    flex-shrink: 0;
    width: 543px;
    height: 856px;
    position: relative;
}

.order-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* ================== ФУТЕР ================== */
.footer {
    padding: 40px 80px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid #636363;
}

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

/* ================== АДАПТИВНОСТЬ ================== */
@media (max-width: 1200px) {
    .header {
        left: 40px;
        right: 40px;
        padding: 15px 30px;
    }
    
    .hero-section, .examples-section, .order-section {
        padding: 150px 40px 80px;
    }
    
    .footer {
        padding: 40px;
    }
    
    .main-title {
        font-size: 56px;
    }
    
    .title-line-1 { font-size: 46px; }
    .title-line-2 { font-size: 58px; }
    .title-line-3 { font-size: 50px; }
    
    .man-image {
        width: 40%;
    }
    
    .price-block {
        max-width: 95%;
    }
    
    .order-button, .submit-button, .order-button-large {
        width: 400px;
        font-size: 18px;
    }
    
    .features {
        gap: 40px;
    }
    
    .section-title, .order-title {
        font-size: 56px;
    }
    
    .songs-container {
        gap: 30px;
    }
    
    .song-card {
        width: 320px;
    }
    
    .play-button {
        width: 250px;
    }
    
    .order-container {
        gap: 40px;
    }
    
    .order-form-container {
        width: 100%;
        max-width: 820px;
    }
    
    .order-image {
        width: 400px;
        height: auto;
    }
}

@media (max-width: 992px) {
    .header {
        left: 20px;
        right: 20px;
        padding: 15px 25px;
    }
    
    .price-block {
        max-width: 95%;
        height: auto;
        padding: 25px 0;
    }
    
    .price-content {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }
    
    .old-price-section,
    .new-price-section,
    .button-section {
        width: 100%;
    }
    
    .price-arrow {
        left: 50%;
        top: auto;
        bottom: -25px;
        transform: translateX(-50%) rotate(90deg);
    }
    
    .order-button, .submit-button, .order-button-large {
        width: 100%;
        max-width: 400px;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .feature {
        justify-content: center;
    }
    
    .man-image {
        width: 50%;
        right: 0;
        left: auto;
    }
    
    .section-title, .order-title {
        font-size: 48px;
    }
    
    .section-subtitle, .order-subtitle {
        font-size: 20px;
        margin-bottom: 60px;
    }
    
    .songs-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .song-card {
        width: 364px;
    }
    
    .order-button-large {
        width: 400px;
        height: 70px;
        font-size: 18px;
    }
    
    .order-container {
        flex-direction: column;
        align-items: center;
    }
    
    .order-content {
        width: 100%;
        max-width: 820px;
    }
    
    .order-form-container {
        width: 100%;
    }
    
    .order-image {
        width: 100%;
        max-width: 543px;
        height: 400px;
        margin-top: 40px;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .submit-button {
        width: 100%;
        max-width: 475px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin: 20px;
        padding: 15px 20px;
        border-radius: 30px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-section, .examples-section, .order-section {
        padding: 120px 20px 60px;
    }
    
    .footer {
        padding: 30px 20px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .man-image {
        position: relative;
        width: 100%;
        max-width: 500px;
        height: 400px;
        margin: 40px auto 0;
        right: auto;
        background-size: contain;
        background-position: center bottom;
        order: 2;
    }
    
    .main-title {
        font-size: 42px;
    }
    
    .title-line-1 { font-size: 36px; }
    .title-line-2 { font-size: 42px; }
    .title-line-3 { font-size: 36px; }
    
    .subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .price-value {
        font-size: 36px;
    }
    
    .price-label {
        font-size: 14px;
    }
    
    .order-button, .submit-button {
        height: 70px;
        font-size: 16px;
        padding-left: 50px;
    }
    
    .lightning-icon {
        left: 15px;
        width: 30px;
        height: 30px;
    }
    
    .features {
        margin-top: 20px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .examples-section, .order-section {
        min-height: auto;
    }
    
    .section-title, .order-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .section-subtitle, .order-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .song-card {
        width: 100%;
        max-width: 364px;
        height: 350px;
    }
    
    .play-button {
        width: 100%;
        max-width: 284px;
        font-size: 18px;
    }
    
    .order-button-large {
        width: 100%;
        max-width: 400px;
        height: 60px;
        font-size: 16px;
    }
    
    .lightning-icon-red {
        width: 32px;
        height: 32px;
    }
    
    .order-form {
        padding: 30px 20px 70px;
        gap: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-input {
        height: 50px;
        font-size: 16px;
    }
    
    .textarea {
        height: 150px;
        font-size: 16px;
    }
    
    .price-value {
        font-size: 36px;
    }
    
    .order-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .header {
        margin: 15px;
        padding: 12px 15px;
    }
    
    .logo {
        font-size: 20px;
        gap: 10px;
    }
    
    .logo-icon {
        width: 25px;
        height: 25px;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .title-line-1 { font-size: 28px; }
    .title-line-2 { font-size: 32px; }
    .title-line-3 { font-size: 28px; }
    
    .subtitle {
        font-size: 16px;
    }
    
    .price-value {
        font-size: 28px;
    }
    
    .old-price-value::after {
        width: 140px;
    }
    
    .lei {
        font-size: 20px;
    }
    
    .order-button, .submit-button {
        height: 60px;
        font-size: 14px;
        padding-left: 45px;
        padding-right: 15px;
    }
    
    .lightning-icon {
        left: 12px;
        width: 25px;
        height: 25px;
    }
    
    .nav-item {
        font-size: 14px;
    }
    
    .section-title, .order-title {
        font-size: 28px;
    }
    
    .section-subtitle, .order-subtitle {
        font-size: 16px;
    }
    
    .song-name {
        font-size: 20px;
    }
    
    .song-occasion {
        font-size: 14px;
    }
    
    .music-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .music-icon img {
        width: 40px;
        height: 40px;
    }
    
    .order-button-large {
        font-size: 14px;
        height: 55px;
    }
    
    .order-form-background {
        border-radius: 30px;
    }
    
    .order-form {
        padding: 20px 15px 50px;
    }
    
    .form-input {
        height: 45px;
        font-size: 14px;
        padding: 0 15px;
    }
    
    .textarea {
        height: 120px;
        font-size: 14px;
        padding: 15px;
    }
    
    .price-value {
        font-size: 28px;
    }
    
    .price-label {
        font-size: 14px;
    }
    
    .order-image {
        height: 250px;
    }
}