/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --dark: #141414;
    --darker: #191919;
    --card-dark: #36383b;
    --orange: #fa5a12;
    --orange-light: #ff8d28;
    --orange-dark: #fb6215;
    --orange-hero: #f86202;
    --orange-badge: #ed6d1e;
    --text-primary: #f1eded;
    --text-light: #e4d5d5;
    --text-muted: #cfc6c6;
    --font-sans: 'Montserrat', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --font-serif: 'Noto Serif', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-orange {
    color: var(--orange-hero);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    width: 100%;
    height: 751px;
    background: linear-gradient(to bottom, #a2a2a2, #232323);
    overflow: hidden;
}

.hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 676px;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Title + subtitle */
.hero__content {
    position: absolute;
    z-index: 2;
    top: 112px;
    left: 113px;
    max-width: 906px;
}

.hero__title {
    font-size: 64px;
    font-weight: 700;
    line-height: 58px;
    letter-spacing: 2.56px;
    text-transform: uppercase;
    color: #312e2e;
    margin-bottom: 28px;
}

.hero__subtitle {
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.44px;
    color: #050505;
    text-shadow: 0 4px 4px rgba(255, 255, 255, 0.5);
    max-width: 742px;
}

/* Logo watermark bottom-left */
.hero__logo-mark {
    position: absolute;
    z-index: 2;
    left: 60px;
    top: 586px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__logo-img {
    width: 160px;
    height: 90px;
    object-fit: contain;
}

.hero__logo-text {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 4.2px;
    color: white;
    margin-top: 2px;
}

/* Navbar overlay at bottom of hero */
.hero__nav-overlay {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    right: 0;
    height: 197px;
}

.hero__nav-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.navbar {
    position: absolute;
    bottom: 0;
    left: 60px;
    right: 0;
    height: 44px;
    display: flex;
    align-items: center;
    gap: 46px;
    margin-bottom: 19px;
}

.navbar__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    margin-right: 8px;
}

.navbar__logo {
    width: 72px;
    height: auto;
    object-fit: contain;
}

.navbar__logo-text {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    color: white;
    margin-top: 2px;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 46px;
}

.navbar__link {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.36px;
    color: #d2c1c1;
    white-space: nowrap;
    transition: color 0.2s;
}

.navbar__link:hover {
    color: white;
}

.navbar__link--active {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    color: white;
    border: 2px solid #fa9f33;
    border-radius: 20px;
    padding: 10px 20px;
    transition: background-color 0.2s, color 0.2s;
}

.navbar__link--active:hover {
    background-color: rgba(250, 159, 51, 0.15);
    color: #fa9f33;
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    margin-right: 40px;
}

.navbar__menu-btn {
    display: none;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 21px 12px 12px;
    border-radius: 12px;
    border: 1px solid #838383;
    background: linear-gradient(to bottom, rgba(90, 91, 99, 0.8), rgba(90, 71, 68, 0.8));
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.lang-selector:hover {
    border-color: #a0a0a0;
    background: linear-gradient(to bottom, rgba(110, 111, 120, 0.9), rgba(110, 90, 87, 0.9));
}

.lang-selector__icon {
    width: 18px;
    height: 18px;
}

.lang-selector__arrow {
    width: 12px;
    height: 7px;
}

.lang-selector__text {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    color: #d7d7e8;
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #cd5204;
    background-image: url("/static/img/home/05dadb64e3b1a13073c8e2d92456673435183401.svg");
    background-size: cover;
    background-blend-mode: luminosity;
    color: white;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 24px -3px rgba(255, 63, 47, 0.32), 0 0 0 0.5px #ff7f74;
    transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-cta:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 28px -2px rgba(255, 63, 47, 0.5), 0 0 0 0.5px #ff7f74;
}

.btn-cta:active {
    transform: translateY(0);
    filter: brightness(0.95);
}

.btn-cta__arrow {
    width: 7px;
    height: 8px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
    background: var(--dark);
    padding: 56px 120px 84px;
    min-height: 1027px;
    display: flex;
    align-items: center;
    gap: 52px;
    position: relative;
    overflow: hidden;
}

.about__image-wrap {
    flex: 0 0 452px;
    height: 492px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.about__text {
    flex: 0 0 735px;
    display: flex;
    flex-direction: column;
    gap: 47px;
    position: relative;
    z-index: 2;
}

.about__title {
    font-size: 44px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    color: #f1eded;
}

.about__desc {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.48px;
    color: #e7dfdf;
    max-width: 663px;
}

.about__globe {
    position: absolute;
    right: -80px;
    top: -180px;
    width: 700px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.about__globe-img {
    width: 100%;
    height: auto;
    transform: rotate(28deg);
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products {
    background: var(--dark);
    padding: 56px 120px 84px;
    min-height: 1223px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 58px;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 1167px;
    width: 100%;
    text-align: center;
}

.section-header__title {
    font-size: 44px;
    font-weight: 600;
    line-height: 54px;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    color: white;
}

.section-header__subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.48px;
    color: var(--text-muted);
}

.products__grid {
    display: flex;
    gap: 44px;
    align-items: flex-start;
    width: 100%;
    max-width: 1346px;
    justify-content: center;
}

.product-card {
    flex: 0 0 419px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.product-card__photo {
    width: 418px;
    height: 385px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: -25px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

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

.product-card__icon-wrap {
    position: absolute;
    top: 307px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 47px;
    background: rgba(255, 251, 251, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    z-index: 3;
}

.product-card__icon {
    width: 54px;
    height: 54px;
}

.product-card__body {
    width: 364px;
    min-height: 288px;
    border-radius: 4px;
    padding: 60px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), inset 0 4px 4px rgba(255, 244, 244, 0.25);
}

.product-card__body--orange {
    background: linear-gradient(to bottom, rgba(250, 90, 18, 0.9), rgba(148, 53, 11, 0.9));
}

.product-card__body--gray {
    background: linear-gradient(to bottom, rgba(113, 115, 121, 0.8), rgba(44, 45, 48, 0.8));
}

.product-card__title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 2.8px;
    text-align: center;
    color: white;
    text-shadow: 0 4px 3.9px rgba(0, 0, 0, 0.4);
}

.product-card__desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #fff4f4;
    text-align: center;
}

/* ============================================================
   INFO BANNER SECTION
   ============================================================ */
.info-banner {
    position: relative;
    min-height: 630px;
    display: flex;
    align-items: center;
    padding: 78px 120px 74px;
    overflow: hidden;
}

.info-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.info-banner__content {
    position: relative;
    z-index: 1;
    max-width: 846px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-banner__title {
    font-size: 44px;
    font-weight: 600;
    line-height: 54px;
    letter-spacing: 0.44px;
    text-transform: uppercase;
    color: white;
}

.info-banner__desc {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.48px;
    color: #fef5f5;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog {
    background: var(--dark);
    padding: 59px 120px 74px;
    min-height: 957px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.blog__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
    max-width: 740px;
    text-align: center;
}

.blog__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px 8px 10px;
    border-radius: 8px;
}

.blog__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: var(--orange-badge);
    border: 0.2px solid white;
    flex-shrink: 0;
}

.blog__badge-label {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--orange-badge);
}

.blog__title {
    font-size: 44px;
    font-weight: 600;
    line-height: 52.8px;
    letter-spacing: 0.44px;
    color: white;
}

.blog__grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    width: 100%;
    max-width: 1346px;
    justify-content: center;
}

.blog-card {
    flex: 0 0 380px;
    height: 556px;
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 21.9px rgba(222, 130, 54, 0.5);
}

.blog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 242, 227, 0.8), rgba(0, 0, 0, 0.8));
    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
}

.blog-card__photo {
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.blog-card__photo img {
    width: 100%;
    height: 115.9%;
    object-fit: cover;
    position: relative;
    top: -7.95%;
}

.blog-card__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px 18px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.blog-card__date {
    display: inline-block;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 500;
    color: white;
    border: 2px solid rgba(241, 245, 255, 0.22);
    border-radius: 50px;
    padding: 12px 18px;
    line-height: 20px;
    width: fit-content;
}

.blog-card__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.22px;
    color: #f3f2f2;
}

.blog-card__title strong {
    font-weight: 600;
}

.btn-article {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 17px;
    height: 52px;
    border-radius: 7px;
    background: linear-gradient(to bottom, #ff8d28, #fa5a12);
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.4));
    white-space: nowrap;
    width: fit-content;
    transition: filter 0.2s, transform 0.15s;
}

.btn-article:hover {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5)) brightness(1.1);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
    background: var(--dark);
    padding: 48px 120px 74px;
    min-height: 957px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 24px;
}

.contact__logo {
    position: absolute;
    top: 28px;
    right: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact__logo-img {
    width: 160px;
    height: 90px;
    object-fit: contain;
}

.contact__logo-text {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 4.2px;
    color: white;
}

.contact__inner {
    display: flex;
    gap: 0;
    align-items: center;
    background: var(--card-dark);
    border-radius: 50px;
    width: 1290px;
    overflow: hidden;
}

/* Left panel */
.contact-panel {
    position: relative;
    width: 678px;
    height: 620px;
    border-radius: 50px;
    overflow: hidden;
    flex-shrink: 0;
}

.contact-panel__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.contact-panel__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 33%,
            rgba(0, 0, 0, 0.1) 66%,
            rgba(0, 0, 0, 0.5) 92%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.contact-panel__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 80px 55px;
    justify-content: center;
}

.contact-panel__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border-radius: 8px;
    padding: 8px 13px 8px 10px;
    width: fit-content;
}

.contact-panel__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: #a64804;
    flex-shrink: 0;
}

.contact-panel__badge span:last-child {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    color: #a64804;
}

.contact-panel__title {
    font-family: var(--font-inter);
    font-size: 44px;
    font-weight: 600;
    line-height: 52.8px;
    letter-spacing: -1px;
    color: white;
    text-shadow: 0 4px 5.4px rgba(0, 0, 0, 0.5);
}

.contact-panel__desc {
    font-family: var(--font-inter);
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    color: white;
    max-width: 436px;
}

/* Form */
.contact-form {
    flex: 1;
    padding: 40px 50px 40px 60px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-group label {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    color: #a0a3a9;
}

.form-group input,
.form-group textarea {
    border: 2px solid #a0a3a9;
    border-radius: 9px;
    padding: 17px 22px;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    color: #a3a3a3;
    background: transparent;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange-light);
}

.form-group textarea {
    border-radius: 8px;
    resize: none;
    overflow: auto;
}

.btn-submit {
    width: 100%;
    padding: 14.5px 20px;
    border-radius: 7px;
    border: none;
    background: linear-gradient(to bottom, #fe8524, #fb6215);
    color: white;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-submit:hover {
    filter: brightness(1.1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--darker);
}

.footer__main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 64px 32px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__col--brand {
    gap: 24px;
}

.footer__brand-name {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-light);
    line-height: 32px;
}

.footer__brand-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-light);
    opacity: 0.8;
    max-width: 384px;
}

.footer__registration {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__reg-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--text-light);
    opacity: 0.6;
}

.footer__reg-value {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
    line-height: 24px;
}

.footer__col-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--text-light);
    opacity: 0.6;
    display: block;
    padding-bottom: 8px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__links li a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14px;
    color: var(--text-light);
    opacity: 0.8;
    line-height: 20px;
    transition: opacity 0.2s;
}

.footer__links li a:hover {
    opacity: 1;
}

.footer__bottom {
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 217px;
    color: white;
}

.footer__copyright {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.footer__tagline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    white-space: nowrap;
}

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .hero {
        height: 332px;
    }

    .hero__bg-img {
        height: 183px;
    }

    .hero__content {
        top: 54px;
        left: 64px;
        max-width: 246px;
    }

    .hero__title {
        margin-bottom: 8px;
        font-size: 18px;
        line-height: 19px;
        letter-spacing: 0.72px;
    }

    .hero__subtitle {
        max-width: 246px;
        font-size: 10px;
        line-height: 12px;
        letter-spacing: 0.2px;
    }

    .hero__logo-mark {
        z-index: 4;
        left: 20px;
        top: 258px;
    }

    .hero__logo-img {
        width: 43px;
        height: 25px;
    }

    .hero__logo-text {
        margin-top: 0;
        margin-left: 8px;
        font-size: 4.5px;
        line-height: 4.5px;
        letter-spacing: 0.675px;
    }

    .hero__nav-overlay {
        height: 100px;
    }

    .navbar {
        left: 20px;
        right: 20px;
        height: 38px;
        gap: 10px;
        margin-bottom: 0;
    }

    .navbar__brand,
    .navbar__links {
        display: none;
    }

    .navbar__menu-btn {
        width: 25px;
        height: 19px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        background: transparent;
        background-image: url('/static/img/home/menu-hamburger.svg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: 25px 19px;
        padding: 0;
        cursor: pointer;
    }

    .navbar__menu-btn span {
        display: none;
    }

    .navbar__actions {
        margin-right: 0;
        margin-left: auto;
        gap: 8px;
    }

    .lang-selector {
        order: 2;
        gap: 4px;
        height: 20px;
        width: 48px;
        padding: 3px 6px 3px 3px;
        border-radius: 3.25px;
        border-width: 0.271px;
    }

    .lang-selector__icon {
        width: 8px;
        height: 8px;
    }

    .lang-selector__arrow {
        width: 6px;
        height: 4px;
    }

    .lang-selector__text {
        font-size: 8px;
    }

    .btn-cta {
        height: 20px;
        width: 138px;
        gap: 4px;
        padding: 6px;
        border-radius: 3.25px;
        box-shadow: 0 0.54px 6.5px -0.81px rgba(255, 63, 47, 0.32), 0 0 0 0.14px #ff7f74;
        font-size: 8px;
        line-height: 5.5px;
    }

    .btn-cta__arrow {
        width: 4px;
        height: 4px;
    }

    .about {
        min-height: 417px;
        padding: 16px 32px;
        flex-direction: column;
        gap: 22px;
    }

    .about__image-wrap {
        width: 216px;
        height: 140px;
        flex: none;
        border-radius: 8px;
    }

    .about__img {
        border-radius: 8px;
    }

    .about__text {
        width: 100%;
        flex: none;
        gap: 22px;
    }

    .about__title {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0.32px;
        text-align: center;
    }

    .about__desc {
        max-width: 100%;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0;
    }

    .about__globe {
        width: 154px;
        right: 30px;
        top: 70px;
        opacity: 0.7;
    }

    .products {
        min-height: auto;
        padding: 16px 32px;
        gap: 32px;
    }

    .section-header {
        max-width: 316px;
        gap: 22px;
    }

    .section-header__title {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0.32px;
    }

    .section-header__subtitle {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0.24px;
    }

    .products__grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        max-width: 100%;
    }

    .product-card {
        width: 100%;
        max-width: 365px;
        flex: none;
    }

    .product-card__photo {
        width: 268px;
        height: 158px;
        margin-bottom: -12px;
        border-radius: 2px;
    }

    .product-card__icon-wrap {
        top: 97px;
        width: 50px;
        height: 50px;
    }

    .product-card__icon {
        width: 30px;
        height: 30px;
    }

    .product-card__body {
        width: 190px;
        min-height: 135px;
        padding: 32px 18px 18px;
        gap: 8px;
        border-radius: 1px;
    }

    .product-card:nth-child(2) .product-card__body {
        min-height: 180px;
    }

    .product-card:nth-child(3) .product-card__body {
        min-height: 194px;
    }

    .product-card__title {
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 1.4px;
    }

    .product-card__desc {
        font-size: 12px;
        line-height: 16px;
    }

    .info-banner {
        min-height: 296px;
        padding: 22px 32px;
        justify-content: center;
    }

    .info-banner__content {
        max-width: 365px;
        gap: 16px;
    }

    .info-banner__title {
        font-size: 16px;
        line-height: 18px;
        letter-spacing: 0.16px;
    }

    .info-banner__desc {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0.24px;
    }

    .blog {
        min-height: auto;
        padding: 16px 32px;
        gap: 26px;
    }

    .blog__header {
        max-width: 257px;
        gap: 8px;
    }

    .blog__badge {
        padding: 2px 3.5px 2px 2.7px;
        border-radius: 2.2px;
    }

    .blog__badge-dot {
        width: 2.2px;
        height: 2.2px;
    }

    .blog__badge-label {
        font-size: 10px;
        line-height: 5px;
        letter-spacing: 0.5px;
    }

    .blog__title {
        font-size: 16px;
        line-height: 18px;
        letter-spacing: 0.16px;
    }

    .blog__grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .blog-card {
        flex: none;
        width: 321px;
        height: 277px;
        border-radius: 2.2px;
        box-shadow: 0 1.08px 5.93px rgba(222, 130, 54, 0.5);
    }

    .blog-card__photo {
        height: 155px;
    }

    .blog-card__body {
        gap: 14px;
        padding: 8px 18px 10px;
    }

    .blog-card__date {
        padding: 3px 5px;
        border-width: 0.54px;
        font-size: 8px;
        line-height: 8px;
    }

    .blog-card__title {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0;
    }

    .btn-article {
        width: 114px;
        height: 24px;
        padding: 4px;
        border-radius: 2px;
        font-size: 10px;
        line-height: 10px;
    }

    .contact {
        min-height: auto;
        padding: 13px 32px 20px;
        gap: 36px;
        justify-content: flex-start;
    }

    .contact__inner {
        width: 324px;
        max-width: 100%;
        border-radius: 13.55px;
        flex-direction: column;
        background: transparent;
        overflow: visible;
    }

    .contact-panel {
        width: 100%;
        height: 235px;
        border-radius: 13.55px;
        border: 0.6px solid #f9f9f9;
    }

    .contact-panel__content {
        gap: 12px;
        padding: 42px 22px;
    }

    .contact-panel__badge {
        height: 14px;
        width: fit-content;
        border-radius: 2.2px;
        padding: 2px 4px 2px 3px;
    }

    .contact-panel__badge-dot {
        width: 2.2px;
        height: 2.2px;
    }

    .contact-panel__badge span:last-child {
        font-size: 8px;
        line-height: 4.5px;
    }

    .contact-panel__title {
        font-size: 16px;
        line-height: 18px;
        letter-spacing: 0;
    }

    .contact-panel__desc {
        max-width: 100%;
        font-size: 12px;
        line-height: 16px;
    }

    .contact-form {
        width: 100%;
        border-radius: 13.55px;
        background: var(--card-dark);
        padding: 64px 20px 12px;
        position: relative;
    }

    .contact__logo {
        top: 250px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .contact__logo-img {
        width: 54px;
        height: 33px;
    }

    .contact__logo-text {
        font-size: 5px;
        line-height: 1;
        letter-spacing: 1.3px;
    }

    .contact-form form {
        gap: 10px;
    }

    .form-row {
        gap: 14px;
    }

    .form-group {
        gap: 4px;
    }

    .form-group label {
        font-size: 8px;
        line-height: 7px;
    }

    .form-group input,
    .form-group textarea {
        border-width: 0.69px;
        border-radius: 3.11px;
        padding: 6px 8px;
        font-size: 5.2px;
        line-height: normal;
    }

    .form-group textarea {
        height: 27px;
        border-radius: 2.76px;
    }

    .btn-submit {
        margin-top: 6px;
        height: 28px;
        border-radius: 2.42px;
        padding: 5px;
        font-size: 10px;
        line-height: 8px;
    }

    .footer__main {
        display: flex;
        flex-direction: column;
        gap: 0;
        max-width: 100%;
        padding: 18px 32px;
    }

    .footer__col {
        padding: 12px 16px;
        gap: 12px;
        border-bottom: 0.5px solid rgba(255, 255, 255, 0.8);
    }

    .footer__brand-name {
        font-size: 16px;
        line-height: 19px;
        letter-spacing: 0.54px;
        text-align: center;
    }

    .footer__brand-desc {
        max-width: 100%;
        font-size: 12px;
        line-height: 14px;
        text-align: center;
    }

    .footer__registration {
        padding-top: 10px;
        gap: 1px;
    }

    .footer__reg-label {
        font-size: 12px;
        line-height: 14px;
        letter-spacing: 0.16px;
    }

    .footer__reg-value {
        font-size: 10px;
        line-height: 14px;
    }

    .footer__col-title {
        padding-bottom: 2px;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 0.16px;
    }

    .footer__links {
        gap: 8px;
    }

    .footer__links li a {
        font-size: 12px;
        line-height: 12px;
        letter-spacing: 0.04px;
    }

    .footer__bottom {
        padding: 10px 32px;
        min-height: 83px;
        flex-direction: column;
        justify-content: center;
        gap: 12px;
    }

    .footer__copyright {
        font-size: 10px;
        line-height: 12px;
        white-space: normal;
        text-align: center;
        overflow-wrap: anywhere;
    }

    .footer__tagline {
        max-width: 320px;
        font-size: 10px;
        line-height: 12px;
        letter-spacing: 0.16px;
        text-align: center;
        white-space: normal;
    }
}

@media (max-width: 420px) {
    .blog-card {
        width: 100%;
    }
}

/* ============================================================
   MOBILE DROPDOWN NAV (hamburger menu)
   ============================================================ */
.navbar__dropdown {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
    flex-direction: column;
    gap: 22px;
    padding: 8px 24px;
    background: linear-gradient(to bottom,
            #191919 0%,
            #191919 46.635%,
            #76330a 99.038%);
}

.navbar__dropdown.is-open {
    display: flex;
}

.navbar__dropdown-item {
    display: flex;
    flex-direction: column;
    padding: 4px 16px;
    font-family: 'Poppins', var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: #b9b9be;
    letter-spacing: 0.14px;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 20px;
    transition: color 0.2s;
}

.navbar__dropdown-item--active {
    color: #ffffff;
    border-color: #fa5a12;
}

.navbar__dropdown-sep {
    display: block;
    height: 2px;
    width: 100%;
    margin-top: 4px;
}