/* ========== RESET & BASE ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --red: #cb0101;
    --red-bright: #e30613;
    --black: #0e0e0e;
    --dark: #1a1a1a;
    --gray-text: #777;
    --gray-light: #a5a5a5;
    --input-bg: #333;
    --input-border: #5c5c5c;
    --font: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: #1a1a1a;
    background: #fff;
    line-height: 1.4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 705px;
    color: #fff;
    overflow: hidden;
    background: #0a0a0a;
     padding-top: 130px;
}

 .hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
} 

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 35%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero__radial {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 90%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Fallback grain background if image fails */
/* .hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 12px),
        linear-gradient(135deg, #1c1c1c 0%, #0a0a0a 50%, #1f1f1f 100%);
    z-index: -1;
}
 */
/* ========== HEADER ========== */
.header {
    position: fixed;
    z-index: 10;
    padding: 20px 0;
    width: 100%;
}

header.header.mobile-fixed {
    background: rgba(14, 14, 14, 0.3); /* Белый фон, 30 % непрозрачности */
  backdrop-filter: blur(10px); /* Размытие фона за элементом */
  -webkit-backdrop-filter: blur(10px); /* Поддержка Safari */
}

.header-inner {
    display: flex;
    align-items: flex-start;
}

.nav {
    padding-left: 250px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    align-items: center;
    gap: 40px;
    max-width: 1740px;
    margin: 0 auto;
    
}

.nav__list {
    display: flex;
    gap: 36px;
    list-style: none;
    margin-bottom: 30px;
}

.nav__list--left { justify-content: flex-end; }

.nav__list a {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.36px;
    color: #fff;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
}

.nav__list a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav__list a:hover {
    color: var(--red);
}
.nav__list a:hover::after { transform: scaleX(1); }

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.logo img {
        max-height: 120px;
}
.logo__mark {
    width: 56px;
    height: 56px;
}

.logo__mark svg {
    width: 100%;
    height: 100%;
    display: block;
}

.logo__text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #fff;
}

.messengers {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contacts-top {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    width: 250px;
}

.contacts-top__phone {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    transition: color 0.2s;
}

.contacts-top__phone:hover { color: var(--red); }

.contacts-top__email {
    font-size: 16px;
    color: #fff;
}

/* ========== HERO CONTENT ========== */
.hero__content {
    position: relative;
    z-index: 5;
    padding: 160px 60px 100px;
    max-width: 1740px;
    margin: 0 auto;
}

.hero__title {
    color: #fff;
    line-height: 1;
    font-weight: 400;
}

.hero__title-line-1 {
    display: block;
    font-size: 75px;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 10px;
}

.hero__title-line-2 {
    display: block;
    font-size: 55px;
    line-height: 1.1;
    font-weight: 400;
}

.hero__title-line-2 em {
    font-style: normal;
    color: var(--red);
    font-weight: 700;
}

.hero__watermark {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 220px;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 80px;
    white-space: nowrap;
    z-index: 6;
    pointer-events: none;
    opacity: 0.98;
    text-shadow: 0 4px 30px rgba(203, 1, 1, 0.4);
}

/* ========== PRODUCTS / RED BAND ========== */
.products {
    position: relative;
    background: #fff;
    padding: 110px 0 90px;
    color: #fff;
    overflow: hidden;
}
.white-bg {
    position: absolute;
    top: 0;
    height: 620px;
    width: 100%;
    background: var(--red);
    z-index: 0;
}
.products__watermark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 240px;
    font-weight: 800;
    color: rgba(255,255,255,0.06);
    letter-spacing: 30px;
    pointer-events: none;
    white-space: nowrap;
}

.products__watermark--left { left: -60px; }
.products__watermark--right { right: -60px; }

.products__inner {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    z-index: 1;
}

.products__title {
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.products__title strong {
    font-weight: 700;
    font-size: 45px;
    display: inline-block;
    margin-left: 8px;
}

.products__grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
}

/* Advantages list */
.advantages__list {
    list-style: none;
    padding-top: 20px;
}

.advantages__list li {
    font-size: 22px;
    font-weight: 400;
    line-height: 29px;
    padding: 18px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: padding-left 0.25s ease;
}

.advantages__list li:hover { padding-left: 8px; }

.advantages__arrow {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.card {
    display: flex;
    flex-direction: column;
    
}

.card__image {
    position: relative;
    height: 433px;
    overflow: hidden;
    background: #2c2c2c;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card__image img { transform: scale(1.06); }

.card__image--placeholder {
    background: linear-gradient(135deg, #3a3a3a 0%, #1f1f1f 100%);
}

.card__image--placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 18px),
        repeating-linear-gradient(0deg, rgba(0,0,0,0.2) 0 1px, transparent 1px 22px);
}

.card__shadow {
    position: absolute;
    left: -10%;
    bottom: -70px;
    height: 190px;
    width: 120%; 
   
    background-color: #000;
    border-radius: 50%; /* создаёт эллипс */
    filter: blur(72.8px);
    pointer-events: none;
}

.card__title {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    z-index: 2;
}

.card__desc {
    font-size: 20px;
    color: #777;
    text-align: center;
    line-height: 23px;
    min-height: 70px;
    margin: 10px 0 20px;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 9px 23px 9px 38px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 29px;
    transition: all 0.25s ease;
    align-self: center;
    min-width: 278px;
}

.btn__icon {
    width: 18px;
    height: 20px;
}

.btn--red {
    background: var(--red);
}

.btn--red:hover {
    background: #343434;
}

.btn--dark {
    background: #343434;
}

.btn--dark:hover {
    background: #fff;
    color: #343434;
}

.btn--submit {
    background: var(--red);
    min-width: 173px;
    border-radius: 2px;
    font-size: 18px;
    padding: 9px 12px 9px 20px;
}

.btn--submit:hover { background: #ff1a1a; }

/* ========== FEATURES ========== */
.features {
    padding-bottom: 90px;
    background: #fff;
    position: relative;
    margin-bottom: 90px;
}

.features__container {
   
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: start;
}

.features__left {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-top: 60px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-item__arrow {
    font-size: 24px;
    color: var(--red);
    line-height: 1;
    padding-top: 4px;
}

.feature-item__title {
    font-size: 30px;
    color: var(--red);
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 2px;
}

.feature-item__sub {
    font-size: 24px;
    line-height: 34px;
    color: #000;
    font-weight: 500;
    line-height: 1.3;
    max-width: 380px;
    margin-bottom: 0;
}

.features__right {
    position: relative;
}

.features__image {
    right: 0;
    z-index: 0;
    position: absolute;
    height: 540px;
}

.features__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features__image--placeholder {
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 60%, #b5b5b5 100%);
}

.features__image--placeholder::after {
    content: '';
    position: absolute;
    inset: 50px;
    background:
        repeating-linear-gradient(90deg, rgba(0,0,0,0.08) 0 4px, transparent 4px 16px);
    border-radius: 200px;
}

.feature-bullets {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bullet {
    position: absolute;
    pointer-events: auto;
    max-width: 320px;
    padding-bottom: 6px;
}

.bullet h4 {
    font-size: 20px;
    font-weight: 500;
    color: #130d0a;
    margin-bottom: 8px;
}

.bullet__line {
    display: block;
    height: 1px;
    background: var(--red);
    width: 100%;
    margin-bottom: 8px;
}

.bullet p {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.4;
}

.bullet--1 { top: 0; left: 30%; }
.bullet--2 { top: 150px; left: 5%; }
.bullet--3 { top: 380px; left: 20%; }

/* ========== FORM SECTION ========== */
.form-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 598px;
    color: #fff;
}

.form-section__photo {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
}

.form-section__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.05);
}

.form-section__photo-shadow {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(14,14,14,1) 0%, rgba(14,14,14,0) 30%, rgba(14,14,14,0) 60%, rgba(14,14,14,1) 100%),
        linear-gradient(90deg, rgba(14,14,14,0) 60%, rgba(14,14,14,1) 100%);
    pointer-events: none;
}

.form-section__photo--placeholder {
    background:
        radial-gradient(circle at 30% 40%, #3a3a3a 0%, transparent 60%),
        linear-gradient(135deg, #1c1c1c 0%, #0a0a0a 100%);
}

.form-section__content {
    padding: 60px 80px 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-section__title {
    font-size: 54px;
    line-height: 62px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 20px;
}

.form-section__title em {
    font-style: normal;
    color: var(--red);
}

.form-section__sub {
    font-size: 18px;
    color: var(--gray-light);
    line-height: 23px;
    margin-bottom: 30px;
    max-width: 690px;
}

.form {
    max-width: 720px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 25px;
}

.form__row--full {
    grid-template-columns: 1fr;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"] {
    width: 100%;
    height: 39px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 2px;
    padding: 8px 18px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s, background 0.2s;
}

.form input::placeholder {
    color: #9a9ca5;
}

.form input:focus {
    outline: none;
    border-color: var(--red);
    background: #3a3a3a;
}

.form__footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
    margin-top: 14px;
}

.form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 10px;
    color: #a7a7a7;
    line-height: 1.3;
    max-width: 380px;
    cursor: pointer;
}

.form__consent input {
    flex: 0 0 11px;
    width: 11px;
    height: 11px;
    margin-top: 2px;
    accent-color: var(--red);
}

.form__consent a {
    text-decoration: underline;
}

/* ========== SCRAP METAL SECTION ========== */
.scrap {
    background: #fff;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 484px;
    padding: 0;
}

.scrap__content {
    padding: 20px 60px 60px 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-items: flex-end;
}
.scrap a {
    margin-left: auto;
}
.scrap__title {
    font-size: 60px;
    line-height: 54px;
    font-weight: 600;
    text-transform: lowercase;
    color: #1a1a1a;
    text-align: end;
}

.scrap__title strong {
    color: var(--red);
    text-transform: uppercase;
    font-weight: 500;
}

.scrap__license {
    font-size: 18px;
    color: var(--gray-text);
    line-height: 23px;
    max-width: 460px;
    text-align: center;
}

.scrap__image {
    height: 100%;
    min-height: 484px;
    overflow: hidden;
    position: relative;
}

.scrap__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scrap__image--placeholder {
    background: 
        radial-gradient(circle at 30% 40%, #6a6a6a 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, #4a4a4a 0%, transparent 50%),
        linear-gradient(135deg, #5a5a5a 0%, #2a2a2a 100%);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--black);
    color: #fff;
    padding: 50px 0 30px;
}

.footer__inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.logo__mark--lg {
    width: 70px;
    height: 70px;
}

.logo__text--lg {
    font-size: 20px;
    letter-spacing: 8px;
}

.footer__columns {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 50px;
    padding-bottom: 30px;
}

.footer__col--center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer__col--right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    text-align: right;
}

.footer__legal {
    font-size: 12px;
    line-height: 16px;
    color: #fff;
}

.footer__company {
    font-size: 15px;
    line-height: 145%;
    margin-bottom: 0px;
}

.footer__col-row {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 30px;
}

.footer__phone {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    transition: color 0.2s;
}
.footer__phone:hover { color: var(--red); }

.footer__email {
    font-size: 16px;
    color: #fff;
    transition: color 0.2s;
}
.footer__email:hover { color: var(--red); }

.footer__address {
    font-size: 13px;
    color: #fff;
    line-height: 17px;
    max-width: 380px;
    margin: 0;
}
 

.footer__policy {
    font-size: 12px;
    color: #fff;
    text-decoration: underline;
    line-height: 18px;
    transition: color 0.2s;
}

.footer__policy:hover { color: var(--red); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #777;
}

.footer__copy { 
    font-size: 13px;
    color: #fff;
}

.footer__credit {
    text-align: right;
    color: #a7a7a7;
    font-size: 10px;
    line-height: 1.4;
}


.development{
    display: flex;
    justify-content: flex-end;
    width: 150px;
}
.development a {
    display: flex;
    gap: 8px;
    align-items: center;
}
.dev-text {
    color: #a7a7a7;
    text-align: right;
    font-size: 10px;
    font-weight: 400;
    line-height: 140.625%; /* 14.063px */
    letter-spacing: 0.1px;
}


/* Cookie Dialog */
#gdpr-cookie-message {
    position: fixed;
    z-index: 9999;
    right: 30px;
    bottom: 30px;
    max-width: 400px;
    padding: 20px 15px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 18.9px -3px rgba(0, 0, 0, 0.25);
    margin-left: 30px;
    font-family: system-ui;
}
#gdpr-cookie-message h4 {
    color: #606060;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 18px;
}
#gdpr-cookie-message h5 {
    color: #606060;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 18px;
}

#gdpr-cookie-message p, #gdpr-cookie-message ul {
    color: #909090;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 13px;
}
#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: right;
}
#gdpr-cookie-message li {
    width: 49%;
    display: inline-block;
}
#gdpr-cookie-message a {
    color: #cb0101;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    border-bottom: none;
    transition: all 0.3s ease-in;
}

#gdpr-cookie-message button,
button#ihavecookiesBtn {
    border: none;
    background: #cb0101;
    color: white;
    font-size: 15px;
    font-weight: 400;
    padding: 7px 24px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button:hover {
    background: #343434;
    transition: all 0.3s ease-in;
}
button#gdpr-cookie-advanced {
    border: 1px solid #0ECCDD;
    display:none;
    background: white;
    color: #0ECCDD;
}
#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}
#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
}

.form-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,.5);

    opacity: 0;
    visibility: hidden;

    transition: .3s;
}

.form-popup.active {
    opacity: 1;
    visibility: visible;
}

.form-popup__content {
    background: #fff;
    padding: 30px 40px;
    border-radius: 16px;

    font-size: 18px;
    text-align: center;

    max-width: 400px;
    width: calc(100% - 40px);
}

.other-page .header{
    background: rgba(14, 14, 14, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.content-section {
        padding: 180px 0 20px;
}
.pagetitle{
    font-size: 35px;
    line-height: 42px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 20px;
}
.content {
    font-size: 22px;
    line-height: 28px;
    font-weight: 400;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1280px) {
    .nav { grid-template-columns: 1fr auto 1fr; gap: 20px; }
    .contacts-top { grid-column: 1 / -1; flex-direction: row; justify-content: center; gap: 30px; margin-top: 10px; }
    .contacts-top { align-items: center; }
    .hero__title-line-1 { font-size: 60px; }
    .hero__title-line-2 { font-size: 45px; }
    .hero__watermark { font-size: 160px; letter-spacing: 60px; }
    .products__grid { grid-template-columns: 240px 1fr; }
    .products__title strong { font-size: 36px; }
    .features__container { grid-template-columns: 320px 1fr; gap: 40px; }
    .form-section__title { font-size: 42px; }
    .scrap__title { font-size: 42px; }
}

@media (max-width: 960px) {
    .header { padding: 15px; }
    .nav { grid-template-columns: 1fr; justify-items: center; }
    .nav__list { justify-content: center !important; flex-wrap: wrap; }
    .contacts-top { flex-direction: column; gap: 4px; align-items: center; }
    .hero__content { padding: 60px 24px 80px; text-align: center; }
    .hero__title-line-1 { font-size: 42px; }
    .hero__title-line-2 { font-size: 30px; }
    .hero__watermark { font-size: 80px; letter-spacing: 24px; bottom: -40px; }

    .products { padding: 40px 0 60px; }
    .products__inner { padding: 0 24px; }
    .products__title { font-size: 22px; }
    .products__title strong { font-size: 28px; display: block; margin: 8px 0 0; }
    .products__grid { grid-template-columns: 1fr; }
    .cards { grid-template-columns: 1fr; }
    .btn { min-width: 100%; }

    .features { padding: 60px 0; }
    .features__container { grid-template-columns: 1fr; padding: 0 24px; gap: 40px; }
    .features__left { padding-top: 0; gap: 30px; }
    .feature-item__title { font-size: 24px; }
    .feature-item__sub { font-size: 18px; }
    .features__image { height: 280px; position: relative;}
    .feature-bullets { position: relative; display: flex; flex-direction: column; gap: 24px; margin-top: 24px; }
    .bullet { position: static; max-width: 100%; }

    .form-section { grid-template-columns: 1fr; }
    .form-section__photo { min-height: 240px; }
    .form-section__content { padding: 40px 24px; }
    .form-section__title { font-size: 32px; line-height: 38px;}
    .form__row { grid-template-columns: 1fr; gap: 12px; }
    .form__footer { flex-direction: column; align-items: stretch; gap: 20px; }

    .scrap { grid-template-columns: 1fr; padding: 0; }
    .scrap__content { padding: 50px 24px; order: 2; }
    .scrap__title { font-size: 32px; line-height: 38px; text-align: left;}
    .scrap__image { min-height: 280px; order: 1; }

    .footer__inner { padding: 0 24px; }
    .footer__columns { grid-template-columns: 1fr; gap: 20px; text-align: center; padding-bottom: 24px; }
    .footer__col--right { align-items: center; text-align: center; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
    
    .logo img {
        max-height: 70px;
    }
    .contacts-top__phone {
        font-size: 18px;
    }
    .contacts-top {
        margin-top: 15px;
    }
    
    .nav__list {
        display: none;
    }
    .nav {
        padding: 0;
    }
    .messengers {
        display: none;
    }
    .contacts-top__email {
        display: none;
    }
    .header-inner {
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .hero {
        min-height: 450px;
        padding-top: 140px;
    }
    .products__title {
        margin-bottom: 20px;
    }
    .advantages__list {
        padding-top: 0;
    }
    .advantages__list li {
        font-size: 20px;
        line-height: 26px;
        padding: 12px 0;
    }
    .white-bg {
        height: 410px;
    }
    .card__image {
        height: 340px;
    }
    .features {
        padding: 0;
    }
    .features__image img {
        object-position: left;
    }
    .scrap__license {
        text-align: left;
    }
    .scrap__license br {
        display: none;
    }
    .scrap__content {
        align-items: flex-start;
    }
    .footer__col-row {
        gap: 20px;
    }
    .footer__legal {
        margin: 0;
    }
    .footer {
        padding: 30px 0 10px;
    }
    
    .content-section {
        padding: 170px 0 20px;
    }
    .pagetitle{
        font-size: 28px;
        line-height: 32px;
        text-transform: uppercase;
        font-weight: 500;
        margin-bottom: 20px;
    }
    .content {
        font-size: 18px;
        line-height: 24px;
        font-weight: 400;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero__title-line-1 { animation: fadeUp 0.8s ease-out 0.2s both; }
.hero__title-line-2 { animation: fadeUp 0.8s ease-out 0.4s both; }
.hero__watermark { animation: fadeUp 1.2s ease-out 0.6s both; display: none;}

.card { animation: fadeUp 0.6s ease-out both; }
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
