:root {
    --black: #050505;
    --text: #1a1a1a;
    --muted: #4a4a4a;
    --yellow: #f5c400;
    --yellow-soft: #fff7d6;
    --bg: #f9fafb;
    --bg-alt: #f8f8f8;
    --white: #ffffff;
    --border: #f3f3f3;
    --border-strong: #eeeeee;
    --border-btn: #d1d5db;
    --font: "Geist", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: 0;
    background: none;
}

.wrap {
    width: min(1440px, 100%);
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
}

/* Header */
.header {
    background: var(--black);
    color: var(--white);
}

.header-inner {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

.logo-jabra {
    height: 30px;
    width: auto;
}

.partner-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 29px;
    padding-left: 12px;
    border: 1px solid #fff;
}

.logo-lanar {
    height: 29px;
    width: auto;
}

.partner-badge span {
    font-size: 11px;
    font-weight: 400;
    line-height: 14.3px;
    white-space: nowrap;
    padding-right: 12px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    font-size: 14px;
    font-weight: 500;
    line-height: 18.2px;
    color: var(--white);
}

.btn-consult {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    line-height: 18.2px;
    padding: 10px 20px;
    border-radius: 20px;
    white-space: nowrap;
}

.btn-consult:hover,
.btn-primary:hover {
    filter: brightness(0.96);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    color: var(--white);
    align-items: center;
    justify-content: center;
}

/* Hero */
.hero {
    background: var(--white);
}

.hero-inner {
    display: grid;
    grid-template-columns: 640px 1fr;
    gap: 0;
    min-height: 760px;
    align-items: center;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 82px 0;
}

.hero-copy h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 61.6px;
    color: var(--text);
}

.hero-kicker {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #000;
    margin-top: 24px;
}

.hero-lead {
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    color: var(--muted);
    max-width: 600px;
    margin-top: 24px;
}

.hero-features {
    display: grid;
    grid-template-columns: 300px 300px;
    gap: 40px;
}

.hero-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 19.5px;
}

.hero-features svg {
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    line-height: 20.8px;
    padding: 14px 24px;
    border-radius: 24px;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border-btn);
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    line-height: 20.8px;
    padding: 14px 24px;
    border-radius: 24px;
}

.btn-phone:hover {
    background: var(--bg);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-visual img {
    width: 700px;
    max-width: 110%;
    height: auto;
}

/* Trust */
.trust {
    background: var(--white);
    border-top: 1px solid var(--border-strong);
}

.trust-inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    padding-top: 40px;
    padding-bottom: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.trust-item p {
    font-size: 13px;
    font-weight: 600;
    line-height: 16.9px;
    max-width: 220px;
}

/* Products */
.products {
    background: var(--white);
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-head {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 24px;
}

.section-head h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 46.8px;
}

.section-head .accent {
    width: 60px;
    height: 4px;
    background: var(--yellow);
    border: 0;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.03);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 26px;
    margin-bottom: 16px;
}

.product-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card li,
.benefit-card li,
.summary-list span {
    display: flex;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.2px;
    color: var(--muted);
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: var(--yellow);
    margin-top: 8px;
    flex-shrink: 0;
}

/* Compare table */
.compare {
    background: var(--white);
    padding-top: 50px;
    padding-bottom: 50px;
}

.compare-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.03);
}

.compare-table {
    display: table;
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    table-layout: auto;
}

.compare-table thead {
    display: table-header-group;
}

.compare-table tbody {
    display: table-row-group;
}

.compare-table tr {
    display: table-row;
}

.compare-table th,
.compare-table td {
    display: table-cell;
    padding: 18px 24px;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}

.compare-table thead th {
    background: var(--bg-alt);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    border-bottom: 2px solid var(--yellow);
}

.compare-table tbody td {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: var(--muted);
    border-bottom: 1px solid var(--border-strong);
}

.compare-table tbody tr:last-child td {
    border-bottom: 0;
}

.compare-table tbody tr:hover td {
    background: var(--bg);
}

.compare-table tbody td:first-child {
    font-weight: 700;
    color: var(--text);
}

.compare-table th:nth-child(3),
.compare-table th:nth-child(4),
.compare-table td:nth-child(3),
.compare-table td:nth-child(4) {
    text-align: center;
}

/* Fit / which solution */
.fit {
    background: var(--bg-alt);
    padding-top: 50px;
    padding-bottom: 50px;
}

.fit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.fit-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.03);
    min-height: 100%;
}

.fit-card > svg {
    margin-bottom: 8px;
    flex-shrink: 0;
}

.fit-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--yellow-soft);
    border: 1px solid var(--yellow);
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.fit-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 23.4px;
    color: var(--text);
}

.fit-card p {
    font-size: 14px;
    font-weight: 400;
    line-height: 18.2px;
    color: var(--muted);
}

/* Help choose */
.help {
    background: var(--white);
    padding-top: 50px;
    padding-bottom: 50px;
}

.help-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.03);
}

.help-copy h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 46.8px;
    color: var(--text);
}

.help-lead {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: var(--text);
}

.help-text {
    margin-top: 16px;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    color: var(--muted);
}

.help-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    margin-bottom: 32px;
}

.help-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    color: var(--text);
}

.help-list .check {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: var(--yellow-soft);
    border: 1px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Benefits */
.benefits {
    background: var(--bg-alt);
    padding-top: 50px;
    padding-bottom: 50px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 35px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.03);
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 23.4px;
    margin-bottom: 12px;
}

.benefit-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Summary */
.summary {
    border-top: 1px solid #dbdada;
    border-top-right-radius: 27px;
    border-top-left-radius: 27px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.summary-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.summary-copy h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 61.6px;
}

.summary-copy .lead {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--muted);
    margin-top: 12px;
    margin-bottom: 32px;
}

.summary-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px;
}

.summary-item .check {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: var(--yellow-soft);
    border: 1px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-item span {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--text);
}

.summary-visual {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.05);
}

.summary-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Request form */
.request {
    background: var(--bg-alt);
    padding-top: 50px;
    padding-bottom: 50px;
}

.request-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.03);
}

.request-card h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    margin-bottom: 28px;
    color: var(--text);
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.request-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.request-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.request-form label span {
    font-size: 13px;
    font-weight: 700;
    line-height: 16.9px;
    color: var(--text);
}

.request-form input,
.request-form select,
.request-form textarea {
    width: 100%;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    background: var(--bg);
    color: var(--text);
    font: inherit;
    font-size: 15px;
    line-height: 20px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.2);
    background: var(--white);
}

.request-form textarea {
    resize: vertical;
    min-height: 120px;
}

.request-full {
    width: 100%;
}

.request-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.request-actions .btn-primary {
    border: 0;
}

.request-actions .btn-primary:disabled {
    opacity: 0.7;
    cursor: wait;
}

.request-status {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
}

.request-status.is-ok {
    color: #15803d;
}

.request-status.is-error {
    color: #b91c1c;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Footer / contacts */
.contacts {
    background: var(--black);
    color: var(--white);
    padding-top: 50px;
    padding-bottom: 80px;
}

.contacts-inner {
    display: grid;
    grid-template-columns: 700px 1fr;
    gap: 80px;
    align-items: center;
}

.contacts-copy h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 41.6px;
    max-width: 700px;
}

.contacts-copy p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    color: var(--white);
    margin-top: 16px;
    margin-bottom: 40px;
}

.contacts-perks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.contacts-perks div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.contacts-perks span {
    font-size: 12px;
    font-weight: 600;
    line-height: 15.6px;
}

.contact-card {
    border: 1px solid var(--yellow);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 26px;
    color: var(--yellow);
}

.contact-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card li,
.contact-card a {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
}

.contact-card a:hover {
    color: var(--yellow);
}

.mobile-nav {
    display: none;
}

@media (max-width: 1200px) {
    .wrap {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-inner,
    .summary-inner,
    .contacts-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: 0;
    }

    .hero-copy {
        padding: 48px 0 0;
    }

    .hero-visual img {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .product-grid,
    .trust-inner,
    .fit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .contacts-inner {
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-inner {
        height: 72px;
    }

    .partner-badge span {
        display: none;
    }

    .hero-copy h1,
    .summary-copy h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .section-head h2,
    .contacts-copy h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .benefit-grid,
    .contacts-perks {
        grid-template-columns: 1fr 1fr;
    }

    .mobile-nav.is-open {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 16px 40px 24px;
        background: var(--black);
    }

    .mobile-nav a {
        color: var(--white);
        font-size: 16px;
        font-weight: 500;
    }

    .summary-visual img {
        height: 280px;
    }

    .contact-card {
        padding: 28px;
    }
    .help-card {
        padding: 28px;
    }

    .help-copy h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .help-list {
        grid-template-columns: 1fr;
    }

    .request-card {
        padding: 28px;
    }

    .request-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mobile-nav.is-open {
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-grid,
    .trust-inner,
    .benefit-grid,
    .contacts-perks,
    .fit-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: 32px;
        line-height: 38px;
    }

    .btn-primary,
    .btn-phone {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        gap: 12px;
    }
}
