:root {
    --orange: #f4a20a;
    --orange-dark: #d88700;
    --navy: #081f3f;
    --text: #0c1930;
    --muted: #5f6b7a;
    --soft: #fff7ea;
    --line: #e8edf3;
    --shadow: 0 20px 60px rgba(8,31,63,.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(1180px, calc(100% - 36px));
    margin-inline: auto;
}

.skip {
    position: absolute;
    left: -999px;
}

.skip:focus {
    left: 16px;
    top: 16px;
    z-index: 99;
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
}

.topbar {
    background: var(--navy);
    color: #fff;
    font-size: 14px;
}

.topbar .container {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    flex-wrap: wrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(8,31,63,.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    min-width: 220px;
}

.logo img {
    width: 190px;
    max-height: 70px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.nav a {
    padding: 12px 10px;
    border-radius: 14px;
    white-space: nowrap;
}

.nav a:hover,
.nav a.active {
    color: var(--orange);
    background: var(--soft);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 15px;
    background: var(--orange);
    color: #fff;
    font-weight: 900;
    padding: 13px 18px;
    box-shadow: 0 12px 24px rgba(244,162,10,.28);
    cursor: pointer;
    transition: .2s transform, .2s box-shadow, .2s background;
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--orange-dark);
    box-shadow: 0 16px 32px rgba(244,162,10,.36);
}

.btn.secondary {
    background: #fff;
    color: var(--navy);
    border: 1px solid var(--line);
    box-shadow: none;
}

.menu-btn {
    display: none;
    background: var(--soft);
    border: 1px solid #ffe2ad;
    color: var(--navy);
    border-radius: 14px;
    padding: 11px 13px;
    font-weight: 900;
}

.hero {
    position: relative;
    isolation: isolate;
    background: radial-gradient(circle at 10% 20%, #fff1d1 0, transparent 30%), linear-gradient(135deg, #fff, #fff7eb);
    overflow: hidden;
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.78) 46%, rgba(255,255,255,.08) 100%);
    z-index: -1;
}

.hero-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 58%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: saturate(1.02);
}

.hero-inner {
    min-height: 620px;
    display: grid;
    align-items: center;
    padding: 70px 0;
}

.hero-content {
    max-width: 680px;
    animation: fadeUp .7s ease both;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #ffe0a7;
    color: var(--orange-dark);
    padding: 9px 13px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(8,31,63,.08);
}

h1 {
    font-size: clamp(42px, 6vw, 74px);
    line-height: .98;
    margin: 22px 0 18px;
    color: var(--navy);
    letter-spacing: -.05em;
}

.lead {
    font-size: clamp(19px, 2.2vw, 27px);
    color: var(--orange-dark);
    font-weight: 900;
    margin: 0 0 24px;
}

.checks {
    display: grid;
    gap: 11px;
    margin: 24px 0 30px;
    padding: 0;
    list-style: none;
    font-size: 19px;
    color: var(--navy);
    font-weight: 650;
}

.checks li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.checks li:before {
    content: "✓";
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.section {
    padding: 86px 0;
}

.section.alt {
    background: #f8fafc;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
}

.section-head h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    margin: 0;
    color: var(--navy);
    letter-spacing: -.04em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    max-width: 560px;
}

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

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 8px 30px rgba(8,31,63,.05);
    transition: .25s transform, .25s box-shadow, .25s border-color;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: #ffd17b;
}

.icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--orange), #ffc766);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    box-shadow: 0 12px 24px rgba(244,162,10,.25);
}

.icon svg {
    width: 25px;
    height: 25px;
    display: block;
    fill: none;
    stroke: #fff;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon svg * {
    fill: none;
    stroke: #fff;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 23px;
    color: var(--navy);
    line-height: 1.18;
}

.card p {
    margin: 0;
    color: var(--muted);
    overflow-wrap: anywhere;
}

.more {
    display: inline-flex;
    margin-top: 20px;
    color: var(--orange-dark);
    font-weight: 900;
}

.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: center;
}

.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
}

.panel h2,
.panel h3 {
    color: var(--navy);
    line-height: 1.1;
}

.panel h3 {
    font-size: 26px;
    margin: 0 0 16px;
}

.list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    overflow-wrap: anywhere;
}

.list li:before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange);
    margin-top: .62em;
    flex: 0 0 auto;
}

.photo-card {
    border-radius: 28px;
    overflow: hidden;
    min-height: 430px;
    box-shadow: var(--shadow);
    position: relative;
    background: #eef2f6;
}

.photo-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
}

.floating {
    position: absolute;
    left: 22px;
    bottom: 22px;
    right: 22px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 18px 45px rgba(8,31,63,.18);
}

.floating strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
}

.logos-wrap {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(8,31,63,.05);
}

.logos-track {
    display: flex;
    width: max-content;
    gap: 18px;
    padding: 20px;
    animation: marquee 38s linear infinite;
}

.logos-wrap:hover .logos-track {
    animation-play-state: paused;
}

.logo-box {
    width: 190px;
    height: 88px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    filter: grayscale(.15);
    transition: .2s transform, .2s filter;
}

.logo-box:hover {
    transform: translateY(-3px);
    filter: grayscale(0);
}

.logo-box img {
    max-width: 145px;
    max-height: 62px;
    object-fit: contain;
}

.logo-box span {
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    font-size: 15px;
    padding: 8px;
}

.contact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
    background: linear-gradient(135deg, #fff, #fff7ea);
    border: 1px solid #ffe0a7;
    border-radius: 24px;
    padding: 24px;
    min-width: 0;
}

.contact-card strong {
    display: block;
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-card a,
.contact-card span {
    color: var(--muted);
    overflow-wrap: anywhere;
}

.cta-strip {
    background: linear-gradient(135deg, var(--navy), #123b73);
    color: #fff;
    border-radius: 30px;
    padding: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.cta-strip:after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 220px;
    height: 220px;
    background: rgba(244,162,10,.25);
    border-radius: 50%;
}

.cta-strip h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -.04em;
}

.cta-strip p {
    margin: 0;
    color: #dbe7f7;
}

.site-footer {
    background: #071a34;
    color: #dfe8f3;
    padding: 44px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}

.footer-grid h3 {
    color: #fff;
    margin: 0 0 12px;
}

.footer-grid p,
.footer-grid a {
    color: #b9c6d7;
    margin: 0 0 8px;
    display: block;
}

.copy {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 20px;
    color: #8fa0b6;
    font-size: 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: .65s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.subhero {
    padding: 62px 0;
    background: linear-gradient(135deg, #fff7ea, #fff);
    border-bottom: 1px solid var(--line);
}

.subhero h1 {
    font-size: clamp(38px, 5vw, 64px);
    margin-bottom: 14px;
}

.breadcrumb {
    font-weight: 900;
    color: var(--orange-dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 30px;
    align-items: start;
}

.form {
    display: grid;
    gap: 13px;
}

.input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 15px 16px;
    font: inherit;
}

textarea.input {
    min-height: 130px;
    resize: vertical;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1100px) {
    .nav {
        position: fixed;
        inset: 82px 18px auto 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 22px;
        padding: 14px;
        box-shadow: var(--shadow);
    }

    .nav.open {
        display: flex;
    }

    .menu-btn {
        display: inline-flex;
    }

    .header-cta .btn {
        display: none;
    }
}

@media (max-width: 900px) {
    .hero-bg {
        width: 100%;
        opacity: .18;
    }

    .hero:after {
        background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.86));
    }

    .hero-inner {
        min-height: 560px;
        padding: 55px 0;
    }

    .service-grid,
    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .cta-strip {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .topbar .container {
        justify-content: center;
        text-align: center;
    }

    .header-inner {
        padding: 12px 0;
    }

    .logo {
        min-width: 0;
    }

    .logo img {
        width: 155px;
    }

    h1 {
        letter-spacing: -.045em;
    }

    .checks {
        font-size: 16px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section {
        padding: 60px 0;
    }

    .section-head {
        display: block;
    }

    .section-head p {
        margin-top: 12px;
    }

    .service-grid,
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .card,
    .panel {
        padding: 22px;
    }

    .photo-card,
    .photo-card img {
        min-height: 280px;
    }

    .cta-strip {
        padding: 26px;
    }

    .logos-track {
        animation-duration: 28s;
    }

    .logo-box {
        width: 150px;
        height: 76px;
    }

    .nav {
        inset: 72px 14px auto 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *:before,
    *:after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* =========================
   KONTAKT STRÁNKA
========================= */

.contact-layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 42px;
    align-items: start;
}

.contact-left {
    width: 100%;
}

.contact-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    overflow: hidden;
    background: #f3f3f3;
    box-shadow: 0 14px 40px rgba(0,0,0,.08);
    margin-bottom: 24px;
}

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-info-box {
    background: #fff;
    border-radius: 28px;
    padding: 34px;
    border: 1px solid #ececec;
    box-shadow: 0 10px 35px rgba(0,0,0,.04);
}

.contact-info-box h3 {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #0f2240;
}

.contact-line {
    margin-bottom: 24px;
}

.contact-line:last-child {
    margin-bottom: 0;
}

.contact-line strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8a8f98;
}

.contact-line span {
    display: block;
    font-size: 18px;
    line-height: 1.6;
    color: #334155;
}

.contact-line a {
    text-decoration: none;
    transition: .25s ease;
}

.contact-line a:hover {
    opacity: .75;
}

.big-contact a {
    display: inline-block;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: #f4a20a;
}

.contact-info-box .contact-line span a {
    color: #f4a20a;
    font-weight: 700;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
}

.form .input {
    width: 100%;
    border: 1px solid #dfe5ec;
    border-radius: 22px;
    padding: 22px 24px;
    font-size: 18px;
    background: #fff;
    color: #0f2240;
    transition: .25s ease;
}

.form .input:focus {
    outline: none;
    border-color: #f4a20a;
    box-shadow: 0 0 0 4px rgba(244,162,10,.12);
}

.form textarea.input {
    min-height: 180px;
    resize: vertical;
}

.form .btn {
    width: 100%;
    justify-content: center;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-photo {
        max-width: 450px;
    }

}

@media (max-width: 768px) {

    .contact-info-box {
        padding: 26px;
        border-radius: 22px;
    }

    .contact-info-box h3 {
        font-size: 30px;
    }

    .big-contact a {
        font-size: 28px;
    }

    .form .input {
        padding: 18px 20px;
        font-size: 16px;
    }

}

@media (max-width: 560px) {

    .contact-info-box h3 {
        font-size: 26px;
    }

    .big-contact a {
        font-size: 24px;
        word-break: break-word;
    }

    .contact-line span {
        font-size: 16px;
    }

}

.cursor-dot {
    position: fixed !important;
    display: block !important;
    width: 3px !important;
    height: 3px !important;
    background: rgba(244,162,10,.55) !important;
    border-radius: 999px !important;
    pointer-events: none !important;
    z-index: 2147483647 !important;
    margin-left: -1.5px !important;
    margin-top: -1.5px !important;
    animation: cursorDotFade .7s ease-out forwards !important;
}

@keyframes cursorDotFade {
    0% {
        opacity: .75;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(var(--drift-x), var(--drift-y)) scale(1.8);
    }
}
.cursor-swarm-dot {
    position: fixed;
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background: rgba(244,162,10,.65);
    pointer-events: none;
    z-index: 2147483647;
    margin-left: -1.5px;
    margin-top: -1.5px;
}




.reviews-section {
    background: #fff;
}

.reviews-slider {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 18px;
    align-items: center;
}

.reviews-viewport {
    width: 100%;
    overflow: hidden;
    min-width: 0;
}

.reviews-track {
    display: flex;
    gap: 20px;
    will-change: transform;
    width: 100%;
}

.review-card {
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);

    min-height: 155px;

    border-radius: 22px;
    border: 1px solid #ffe0a7;

    background: linear-gradient(135deg, #ffffff, #fff8ec);

    padding: 18px;

    display: flex;
    flex-direction: column;
    gap: 9px;

    box-shadow: 0 8px 24px rgba(8, 31, 63, .05);
}

.review-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.review-name {
    color: var(--navy);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.15;
}

.review-date {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.review-score {
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;

    display: flex;
    gap: 6px;
    align-items: center;
}

.review-score span {
    letter-spacing: -1px;
}

.review-score strong {
    font-size: 15px;
}

.review-type {
    width: fit-content;

    padding: 5px 10px;

    border-radius: 999px;

    background: var(--soft);
    color: var(--orange-dark);

    font-size: 13px;
    font-weight: 900;
}

.review-text {
    margin: 0;

    color: var(--muted);
    font-size: 15px;
    line-height: 1.4;
}

.review-empty {
    color: #8a94a3;
    font-style: italic;
}

.reviews-arrow {
    width: 46px;
    height: 46px;

    border: none;
    border-radius: 999px;

    background: linear-gradient(135deg, var(--orange), #ffc766);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0;

    cursor: pointer;

    box-shadow: 0 14px 28px rgba(244, 162, 10, .30);

    transition: .2s transform, .2s box-shadow, .2s background;
}

.reviews-arrow::before {
    content: "";

    width: 11px;
    height: 11px;

    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}

.reviews-arrow-prev::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.reviews-arrow-next::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

.reviews-arrow:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 18px 34px rgba(244, 162, 10, .40);
}

@media (max-width: 760px) {

    .reviews-slider {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        gap: 10px;
    }

    .review-card {
        flex-basis: 100%;
        max-width: 100%;
        min-height: auto;
    }

    .reviews-arrow {
        width: 38px;
        height: 38px;
    }

    .reviews-arrow::before {
        width: 9px;
        height: 9px;
    }

    .review-card-head {
        display: block;
    }

    .review-score {
        margin-top: 8px;
    }
}






.activity-bubble {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9998;

    max-width: 390px;

    display: flex;
    gap: 14px;
    align-items: center;

    background: #fff;
    border: 1px solid #ffe0a7;
    border-radius: 24px;

    padding: 16px 46px 16px 16px;

    box-shadow: 0 18px 45px rgba(8,31,63,.16);

    opacity: 0;
    transform: translateY(18px) scale(.96);
    pointer-events: none;

    transition: .35s ease;
}

.activity-bubble.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.activity-icon {
    width: 46px;
    height: 46px;

    border-radius: 14px;

    flex: 0 0 auto;

    object-fit: contain;
}

.activity-bubble span {
    color: #0c1930;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 750;
}

.activity-bubble span strong {
    color: #f4a20a;
    font-weight: 950;
}

.activity-close {
    position: absolute;
    top: 8px;
    right: 12px;

    border: 0;
    background: transparent;

    color: #8a94a3;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;
}

@media (max-width: 620px) {
    .activity-bubble {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
    }
}




.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;

    z-index: 99999;

    display: flex;
    justify-content: center;

    opacity: 0;
    transform: translateY(20px);

    transition:
        .3s ease;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-inner {
    width: 100%;
    max-width: 760px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    padding: 18px 20px;

    border-radius: 22px;

    background: rgba(255,255,255,.96);

    border: 1px solid #ffe0a7;

    box-shadow:
        0 18px 50px rgba(8,31,63,.16);

    backdrop-filter: blur(10px);
}

.cookie-text {
    color: #0c1930;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
}

.cookie-button {
    flex: 0 0 auto;

    border: 0;
    border-radius: 999px;

    background: #f4a20a;
    color: #fff;

    font-size: 14px;
    font-weight: 800;

    padding: 12px 18px;

    cursor: pointer;

    transition:
        .2s ease;
}

.cookie-button:hover {
    transform: translateY(-1px);
    background: #df9207;
}

@media (max-width: 700px) {

    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-button {
        width: 100%;
    }

}