* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f6f7f5;
    color: #3d4653;
    font-family: "Inter Regular", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
}

a {
    color: #2a3a4f;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

a:hover {
    color: #947000;
    text-decoration: none;
}

h1, h2, h3, h4, strong, b {
    color: #111827;
    font-family: "Inter Medium", Arial, sans-serif;
    font-weight: normal;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1160px;
    }
}

.site-header {
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid #e4e7eb;
    backdrop-filter: blur(16px);
}

.navbar {
    padding: 12px 0;
}

.logo {
    width: 198px;
    max-width: 55vw;
}

.navbar-toggler {
    border: 1px solid #d7dce2;
    border-radius: 7px;
    padding: 7px 10px;
}

.navbar-toggler-icon {
    width: 22px;
    height: 16px;
    background-image: linear-gradient(#111827, #111827), linear-gradient(#111827, #111827), linear-gradient(#111827, #111827);
    background-position: 0 0, 0 7px, 0 14px;
    background-repeat: no-repeat;
    background-size: 22px 2px;
}

.navbar-nav .nav-link {
    color: #4b5563;
    padding: 8px 12px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    margin-left: 6px;
    padding: 7px 15px !important;
    border: 1px solid #f1c40f;
    border-radius: 7px;
    background: #f9cc33;
    color: #111827 !important;
}

.nav-cta:hover, .btn-yellow:hover {
    background: #f2bf16;
    border-color: #f2bf16;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 78px 0 64px;
    background: #fff;
}

.hero-section:after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    height: 58%;
    background: #f9cc33;
    content: "";
    clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%);
    opacity: .28;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 11px;
    border: 1px solid #f4d56e;
    border-radius: 7px;
    background: #fff7d8;
    color: #4f3b00;
    font-size: 12px;
}

.hero-section h1 {
    max-width: 620px;
    margin: 20px 0;
    font-size: 47px;
    line-height: 1.08;
}

.lead {
    max-width: 610px;
    color: #4b5563;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 34px;
}

.btn {
    min-height: 42px;
    border-radius: 7px;
    box-shadow: none !important;
    font-family: "Inter Medium", Arial, sans-serif;
    font-size: 14px;
}

.btn-yellow {
    border: 1px solid #f9cc33;
    background: #f9cc33;
    color: #111827;
}

.btn-outline {
    border: 1px solid #d8dde4;
    background: #fff;
    color: #111827;
}

.btn-outline:hover {
    background: #f3f4f6;
    color: #111827;
}

.signal-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 640px;
}

.signal-item {
    min-height: 105px;
    padding: 17px;
    border: 1px solid #e3e8ef;
    border-radius: 8px;
    background: #fbfcfd;
}

.signal-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.hero-image-wrap {
    position: relative;
    margin-left: 24px;
}

.hero-image-wrap img {
    display: block;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .16);
}

.image-note {
    position: absolute;
    right: 22px;
    bottom: 22px;
    max-width: 270px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, .68);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    color: #384252;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .16);
}

.image-note strong {
    display: block;
    margin-bottom: 5px;
}

.section {
    padding: 74px 0;
}

.section-muted {
    background: #f8fafb;
}

.section-yellow {
    background: #f9cc33;
}

.section-title {
    max-width: 720px;
    margin-bottom: 38px;
}

.section-title.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-title h2 {
    margin-bottom: 12px;
    font-size: 32px;
    line-height: 1.18;
}

.section-title p {
    margin-bottom: 0;
    color: #596474;
    font-size: 17px;
}

.feature-box {
    height: 100%;
    min-height: 238px;
    padding: 24px;
    border: 1px solid #e3e8ef;
    border-radius: 8px;
    background: #fff;
}

.icon-box {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 8px;
    background: #fff7d8;
}

.icon-box img {
    width: 26px;
    height: 26px;
}

.feature-box h3 {
    margin-bottom: 10px;
    font-size: 19px;
}

.feature-box p {
    margin-bottom: 0;
}

.split-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-left: 20px;
}

.split-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 8px;
}

.split-image img:first-child {
    margin-top: 38px;
}

.check-list li {
    position: relative;
    margin-bottom: 13px;
    padding-left: 30px;
}

.check-list li:before {
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url("../img/check-circle.svg") center / 20px 20px no-repeat;
    content: "";
}

.contact-panel {
    padding: 34px;
    border: 1px solid #e3e8ef;
    border-radius: 8px;
    background: #fff;
}

.contact-panel h2 {
    font-size: 29px;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.contact-item img {
    width: 22px;
    height: 22px;
    margin-top: 2px;
}

.content-section {
    padding: 62px 0 82px;
    background: #fff;
}

.content-section .container {
    max-width: 850px;
}

.content-section .legal-container {
    max-width: 820px;
}

.content-section h1 {
    margin-bottom: 30px;
    font-size: 34px;
}

.content-section h2 {
    margin-top: 34px;
    margin-bottom: 14px;
    font-size: 23px;
}

.content-section h3 {
    margin-top: 30px;
    margin-bottom: 11px;
    font-size: 18px;
}

.content-section p {
    margin-bottom: 17px;
}

.content-section a {
    color: #111827;
    border-bottom: 1px solid #f1c40f;
}

.content-section a:hover {
    color: #947000;
    border-color: #947000;
}

.content-box {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.list-disc {
    margin-left: 19px;
    list-style: disc;
}

.list-disc li {
    margin-bottom: 9px;
}

.legal-note {
    margin-top: 34px;
    padding: 22px 0 2px;
    border-top: 2px solid #111827;
    border-bottom: 1px solid #d8dde4;
}

.legal-note p:last-child {
    margin-bottom: 17px;
}

.site-footer {
    padding: 42px 0 22px;
    background: #111827;
    color: #a8b1bf;
}

.footer-logo {
    width: 190px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.site-footer h4 {
    margin-bottom: 13px;
    color: #fff;
    font-size: 14px;
}

.site-footer a {
    color: #a8b1bf;
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #283244;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .footer-contact {
        text-align: right;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 14px 0 8px;
    }

    .nav-cta {
        margin-top: 8px;
        margin-left: 0;
    }

    .hero-section {
        padding: 54px 0;
    }

    .hero-section h1 {
        font-size: 38px;
    }

    .hero-image-wrap {
        margin: 30px 0 0;
    }

    .split-image {
        margin: 30px 0 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 32px;
    }

    .lead, .section-title p {
        font-size: 16px;
    }

    .signal-list {
        grid-template-columns: 1fr;
    }

    .image-note {
        position: static;
        max-width: none;
        margin-top: 12px;
        box-shadow: none;
    }

    .section {
        padding: 54px 0;
    }

    .section-title h2 {
        font-size: 27px;
    }

    .split-image img {
        height: 290px;
    }

    .footer-links {
        justify-content: flex-start;
    }
}
