: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);
    line-height: 1.5;
}

.page {
    width: 100%;
    min-height: 100%;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    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: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.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;
}

.kicker {
    margin: 0 0 10px;
    color: var(--brand-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    margin: 0 0 14px;
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.1;
}

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

.intro-secondary {
    margin-top: 22px;
    margin-bottom: 0;
    font-size: 15px;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.primary-cta,
.secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 0 16px;
}

.primary-cta {
    background: var(--brand-orange);
    border: 1px solid #e65b1f;
    color: #fff;
}

.secondary-cta {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--brand-blue);
}

.usp-list {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.usp-list li {
    position: relative;
    padding-left: 20px;
    color: #2f4357;
    font-size: 14px;
}

.usp-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-orange);
}

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

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

.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;
}

.products-panel {
    padding: 42px;
    background:
        radial-gradient(circle at top right, rgba(26, 117, 187, 0.08), transparent 36%),
        linear-gradient(180deg, #fbfdff 0%, #f3f8fc 100%);
}

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

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

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

.product-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(26, 117, 187, 0.08);
}

.product-image-link {
    display: block;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.product-image-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 18px;
}

.product-body {
    padding: 16px 16px 18px;
}

.product-marketplace {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.35;
}

.marketplace-cta {
    margin: 0 0 10px;
    color: var(--brand-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 10px 12px;
    text-decoration: none;
}

.product-link img {
    width: 100%;
    max-width: 110px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.company-footer {
    border-top: 1px solid var(--border);
    background: #fbfdff;
    padding: 18px 24px;
}

.trustpilot-fullwidth {
    border-top: 1px solid var(--border);
    background: #ffffff;
    padding: 18px 24px 8px;
}

.company-footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    color: #556a7c;
    font-size: 13px;
}

.company-footer-inner strong {
    color: var(--text-main);
}

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

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

@media (max-width: 720px) {

    .hero,
    .products-panel {
        padding: 24px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-cta,
    .secondary-cta {
        width: 100%;
    }

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

    .products-grid {
        grid-template-columns: 1fr;
    }

    .marketplace-links {
        grid-template-columns: 1fr;
    }

    .logo img {
        width: 180px;
    }

    .company-footer {
        padding: 16px;
    }

    .trustpilot-fullwidth {
        padding: 16px 16px 8px;
    }
}
