:root {
    --brand-orange: #fe6d2e;
    --brand-blue: #1a75bb;
    --brand-orange-soft: #fff0e8;
    --brand-blue-soft: #ebf4fb;
    --text-main: #17212b;
    --text-muted: #4a5c6d;
    --border: #d7e6f3;
    --card-bg: #ffffff;
    --page-bg: #f7fbff;
    --shadow: 0 22px 56px rgba(26, 117, 187, 0.16);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
    color: var(--text-main);
    background: var(--page-bg);
}

.page {
    width: 100%;
    min-height: 100vh;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    width: min(1160px, 100%);
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.topbar {
    height: 10px;
    background: var(--brand-blue);
}

.content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.hero {
    padding: 42px;
    background: #ffffff;
    border-right: 1px solid var(--border);
}

.logo {
    margin-bottom: 26px;
}

.logo img {
    display: block;
    width: 210px;
    max-width: 100%;
    height: auto;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 5vw, 50px);
    line-height: 1.06;
}

.intro {
    margin: 0 0 26px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
}

.market-title {
    margin: 0 0 12px;
    font-size: 22px;
    color: var(--brand-blue);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.market {
    min-height: 84px;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0;
    background: #fff;
    display: grid;
    place-items: center;
}

.market img {
    width: 160px;
    height: 44px;
    object-fit: contain;
    object-position: center center;
    display: block;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
    aspect-ratio: 16 / 9;
    margin-bottom: 20px;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.translations {
    padding: 42px;
    background: #ffffff;
}

.translations h2 {
    margin: 0 0 8px;
    font-size: 26px;
}

.translations p {
    margin: 0 0 20px;
    color: var(--text-muted);
    font-size: 15px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.message {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.message strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--brand-blue);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.flag {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--brand-blue-soft);
    border: 1px solid var(--border);
    font-size: 16px;
}

.message p {
    margin: 0 0 12px;
    color: #334353;
    line-height: 1.55;
    font-size: 14px;
    flex: 1;
}

.order-btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--brand-orange);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid #eb5a1a;
    margin-top: auto;
    align-self: flex-start;
}

@media (max-width: 960px) {
    .content {
        grid-template-columns: 1fr;
    }

    .hero {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 720px) {

    .hero,
    .translations {
        padding: 24px;
    }

    .grid,
    .market-grid {
        grid-template-columns: 1fr;
    }

    .logo img {
        width: 180px;
    }
}