:root {
    --c1: #2b6cb0;
    --c2: #f6ad55;
    --c3: #0f172a;
    --c4: #e2e8f0;
    --c5: #0ea5e9
}

* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0
}

body {
    font-family: "Manrope", sans-serif;
    background: linear-gradient(180deg, var(--c4), #fff);
    color: #1e293b;
    line-height: 1.65
}

a {
    color: var(--c1);
    text-decoration: none;
    transition: .2s
}

a:hover {
    opacity: .8
}

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

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 18px;
    padding-left: 18px !important;
    padding-right: 18px !important;
}

.grid {
    display: grid;
    gap: 28px
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 700
}

.btn-primary {
    background: var(--c1);
    color: #fff
}

.btn-ghost {
    background: #fff;
    border-color: var(--c1);
    color: var(--c1)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0
}

.nav a {
    margin: 0 10px;
    font-weight: 700
}

.brand {
    display: flex;
    align-items: center;
    font-weight: 900;
    letter-spacing: .3px
}

.brand i {
    margin-right: 10px;
    color: var(--c2)
}

.hero {
    position: relative;
    color: #fff;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43, 108, 176, .85), rgba(14, 165, 233, .85))
}

.hero .content {
    position: relative;
    z-index: 2;
    padding: 60px 0
}

.hero h1 {
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.1;
    margin: 0 0 14px
}

.hero p {
    font-size: clamp(16px, 2.2vw, 20px);
    max-width: 760px
}

.hero .blob {
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(ellipse at center, var(--c2), transparent 60%);
    filter: blur(14px);
    opacity: .6;
    border-radius: 50%
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../imgmain/hero.webp") center/cover no-repeat;
    transform: scale(1.02)
}

.section {
    padding: 64px 0
}

.karty {
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr))
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(2, 8, 23, .04)
}

.card h3 {
    margin: 0 0 10px
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--c4);
    color: #0f172a;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .4px
}

.split {
    grid-template-columns:1.1fr .9fr;
    align-items: center
}

.footer {
    background: var(--c3);
    color: #cbd5e1;
    padding: 38px 0
}

.footer a {
    color: #e2e8f0
}

.form {
    grid-template-columns:1fr 1fr
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700
}

input, textarea, select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: #fff;
    font-family: inherit
}

textarea {
    min-height: 140px;
    resize: vertical
}

input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--c5);
    border-color: var(--c5)
}

.small {
    font-size: 14px;
    color: #64748b
}

.headerbar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #e5e7eb
}

.hero-cta {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.stat {
    display: flex;
    gap: 12px;
    align-items: center
}

.stat i {
    font-size: 22px;
    color: var(--c2)
}

.hr {
    height: 1px;
    background: #e5e7eb;
    margin: 18px 0
}

h2 {
    font-size: clamp(22px, 3vw, 34px);
    margin: 0 0 16px
}

h4 {
    margin: 0 0 8px
}

.address {
    white-space: pre-line
}

.table {
    width: 100%;
    border-collapse: collapse
}

.table td, .table th {
    border: 1px solid #e5e7eb;
    padding: 12px
}

.note {
    background: linear-gradient(135deg, #fff, #f8fafc);
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px
}

.cta-band {
    background: linear-gradient(90deg, var(--c1), var(--c5));
    color: #fff;
    border-radius: 16px;
    padding: 28px
}

.hero .shade {
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 20% 20%, rgba(255, 255, 255, .18), transparent 60%)
}

.logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--c2);
    margin-left: 8px
}

section{
    overflow: hidden;
}

@media (max-width: 900px) {
    .split {
        grid-template-columns:minmax(
        0,1fr
        );
    }

    .form {
        grid-template-columns:1fr
    }
    .grid{
        grid-template-columns: minmax(
        0,1fr
        ) !important;
    }
}
