/* DalmatianWins Croatia - UI refresh: lighter, glassy, iOS-like */
/* Single CSS file */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

:root {
    /* Light base */
    --bg0: #eef0f7;
    --bg1: #e3e7f3;
    --bg2: #eaf9ff;
    --ink: #0b1220; /* primary text on light */
    --ink2: rgba(11, 18, 32, .72);
    --line: rgba(11, 18, 32, .10);

    /* Accents (fresh gradients) */
    --accent: #6d5cff; /* violet */
    --accent2: #00c2ff; /* cyan */
    --accent3: #ffd66b; /* warm */

    /* Surfaces (glass) */
    --glass: rgba(255, 255, 255, .62);
    --glass2: rgba(255, 255, 255, .78);
    --glassDark: rgba(13, 19, 34, .62);

    --shadow: 0 14px 36px rgba(16, 24, 40, .12);
    --shadow2: 0 10px 22px rgba(16, 24, 40, .10);

    --radius: 18px;
    --radius2: 26px;
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    line-height: 1.55;

    /* Soft iOS-ish background */
    background:
            radial-gradient(900px 520px at 12% 8%, rgba(109, 92, 255, .26), transparent 60%),
            radial-gradient(900px 520px at 92% 16%, rgba(0, 194, 255, .24), transparent 60%),
            radial-gradient(900px 520px at 60% 96%, rgba(255, 214, 107, .24), transparent 55%),
            linear-gradient(180deg, var(--bg0), var(--bg1));
}

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

a:hover {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 16px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 10px 12px;
    border-radius: 14px;
    background: #fff;
    color: #111;
    z-index: 9999;
    box-shadow: var(--shadow);
}

/* Glass helpers */
.glass {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, .55);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px) saturate(1.25);
    -webkit-backdrop-filter: blur(16px) saturate(1.25);
}

/* Topbar (dark glass for contrast) */
.topbar {
    background: var(--glassDark);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.topbar .bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
}

.topbar .msg {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .86);
}

.badge18 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .10);
    border: 2px solid #f33;
    padding: 6px 6px;
    border-radius: 999px;
}

.badge18 img {
    width: 50px;
    height: auto;
}

.small-note {
    color: rgba(0, 0, 0, .72);
    font-size: 13px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: rgba(255, 255, 255, .58);
    border-bottom: 1px solid rgba(11, 18, 32, .10);
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
}

.brand img {
    height: 48px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    padding: 10px 12px;
    border-radius: 999px;
    color: rgba(11, 18, 32, .72);
    font-weight: 800;
    font-size: 14px;
    border: 1px solid transparent;
}

.nav a.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(109, 92, 255, 1), rgba(0, 194, 255, 1));
    border-color: rgba(255, 255, 255, .40);
    box-shadow: 0 10px 22px rgba(109, 92, 255, .20);
}

.nav a:hover {
    border-color: rgba(11, 18, 32, .12);
    background: rgba(255, 255, 255, .35);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(11, 18, 32, .10);
    background: rgba(255, 255, 255, .62);
    color: var(--ink);
    font-weight: 900;
    font-size: 14px;
    cursor: pointer;
    box-shadow: var(--shadow2);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    transition: transform .12s ease, background .12s ease, border .12s ease;
}

.btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .78);
    border-color: rgba(11, 18, 32, .16);
}

.btn-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, .35);
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    box-shadow: 0 14px 28px rgba(0, 194, 255, .18), 0 14px 28px rgba(109, 92, 255, .14);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(109, 92, 255, .96), rgba(0, 194, 255, .96));
}

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    border: 1px solid rgba(11, 18, 32, .10);
    background: rgba(255, 255, 255, .62);
    color: var(--ink);
    cursor: pointer;
    box-shadow: var(--shadow2);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
}

.menu-btn svg {
    width: 20px;
    height: 20px;
}

.mobile-panel {
    display: none;
    border-top: 1px solid rgba(11, 18, 32, .10);
    padding: 12px 0 16px;
}

.mobile-panel a {
    display: block;
    padding: 12px 12px;
    border-radius: 18px;
    color: rgba(11, 18, 32, .78);
    font-weight: 900;
    border: 1px solid rgba(11, 18, 32, .10);
    background: rgba(255, 255, 255, .58);
    box-shadow: var(--shadow2);
    margin-top: 10px;
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.mobile-panel a.active {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-color: rgba(255, 255, 255, .38);
}

/* Hero */
.hero {
    position: relative;
}
.hero .container {
    padding: 50px 0 50px;
    position: relative;
}

.hero .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
}

.card, .feature, .panel, details.faq, .prose {
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(255, 220, 0, 0.6);
    border-top-color: rgba(255, 220, 0, .78);
    border-left-color: rgba(255, 220, 0, .78);
    border-right-color: rgba(255, 220, 0, .78);
    border-bottom-color: rgba(255, 220, 0, .78);
    border-radius: var(--radius2);
    box-shadow: 0 10px 15px rgba(255, 220, 0, .1);
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.hero {
}

.hero .back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../img/hero.jpg");
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
}

.hero-card {
    padding: 26px;
    position: relative;
    overflow: hidden;
    color: #ffffff
}

.hero h1 {
    margin: 0;
    font-size: clamp(28px, 3.3vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
}

.hero p {
    margin: 14px 0 0;
    color: #fff;
    font-size: 15px;
    max-width: 64ch;
    position: relative;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(11, 18, 32, .10);
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    position: relative;
    background: #fff2;
    backdrop-filter: blur(5px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent2);
    box-shadow: 0 0 0 4px rgba(0, 194, 255, .14);
}

.dot.pink {
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(109, 92, 255, .14);
}

.dot.gold {
    background: var(--accent3);
    box-shadow: 0 0 0 4px rgba(255, 214, 107, .18);
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    position: relative;
}

.hero-actions .btn {
    padding: 12px 16px;
}

.hero-side {
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 26px;
}

.hero-side .stat {
    flex: 1;
}

.stat {
    padding: 18px;
    border-radius: var(--radius);
    color: #fff;
    background: #fff2;
    backdrop-filter: blur(5px);
    border: 1px solid #fff2;
}

.stat .k {
    font-size: 13px;
    color: #fff;
    font-weight: 800;
}

.stat .v {
    margin-top: 6px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.stat .sub {
    margin-top: 6px;
    color: rgba(11, 18, 32, .68);
    font-size: 13px;
    color: #fff
}

/* Sections */
.section {
    padding: 40px 0;
}

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

.section h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.02em;
}

.section .lead {
    margin: 0;
    color: rgba(11, 18, 32, .70);
    font-size: 14px;
    max-width: 70ch;
}

/* Offer cards */
.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.card {
    padding: 18px;
}

.offer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.offer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    padding: 10px 15px;
    box-shadow: 0 8px 18px rgba(16, 24, 40, .10);
    border-radius: 16px;
}

.offer-brand img {
    width: 140px;
    height: auto;
}

.offer-name {
    font-weight: 900;
    font-size: 16px;
}

.offer-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(11, 18, 32, .10);
    font-weight: 900;
    font-size: 13px;
    color: rgba(11, 18, 32, .86);
}

.pill.good {
    border-color: rgba(0, 194, 255, .30);
}

.pill.warn {
    border-color: rgba(255, 214, 107, .40);
}

.offer-body {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.bonus {
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(11, 18, 32, .10);
}

.bonus .title {
    font-weight: 900;
    font-size: 14px;
}

.bonus .desc {
    color: rgba(11, 18, 32, .72);
    font-size: 13px;
    margin-top: 6px;
}

.kv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.kv .item {
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(11, 18, 32, .10);
}

.kv .item .k {
    color: rgba(11, 18, 32, .62);
    font-size: 12px;
    font-weight: 800;
}

.kv .item .v {
    font-weight: 900;
    margin-top: 4px;
    font-size: 14px;
}

.offer-actions {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.offer-actions .fine {
    color: rgba(11, 18, 32, .70);
    font-size: 12px;
    max-width: 60ch;
}

.hero .disclaimer {
    background: rgba(255, 255, 255, .58);
    color: #222;
}

.disclaimer {
    margin-top: 14px;
    padding: 14px 14px;
    border-radius: 18px;
    border: 1px dashed rgba(11, 18, 32, .18);
    color: rgba(11, 18, 32, .70);
    font-size: 13px;
}

/* Stars */
.stars {
    --rating: 4.8;
    position: relative;
    width: 110px;
    height: 18px;
    display: inline-block;
}

.stars::before,
.stars::after {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: repeat-x;
    background-size: 22px 18px;
}

.stars::before {
    opacity: 0.40;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='18' viewBox='0 0 22 18'%3E%3Cpath d='M11 0.8l2.9 5.9 6.5 0.9-4.7 4.6 1.1 6.6L11 15.6 5.2 18.8l1.1-6.6L1.6 7.6l6.5-0.9L11 0.8z' fill='none' stroke='%230b1220' stroke-width='1.6'/%3E%3C/svg%3E");
}

.stars::after {
    width: calc((var(--rating) / 5) * 100%);
    overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='18' viewBox='0 0 22 18'%3E%3Cpath d='M11 0.8l2.9 5.9 6.5 0.9-4.7 4.6 1.1 6.6L11 15.6 5.2 18.8l1.1-6.6L1.6 7.6l6.5-0.9L11 0.8z' fill='%23ffd66b'/%3E%3C/svg%3E");
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating .num {
    font-weight: 900;
    font-size: 13px;
    color: rgba(11, 18, 32, .86);
}

/* Why us / Safety */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.feature {
    padding: 16px;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.feature .icon {
    font-size: 18px;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(109, 92, 255, .95), rgba(0, 194, 255, .95));
    color: #fff;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(0, 194, 255, .15);
}

.feature h3 {
    margin: 12px 0 0;
    font-size: 16px;
    letter-spacing: -0.02em;
}

.feature p {
    margin: 8px 0 0;
    color: rgba(11, 18, 32, .72);
    font-size: 13px;
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 16px;
}

.panel {
    padding: 18px;
}

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

.panel ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: rgba(11, 18, 32, .72);
}

.panel li {
    margin: 6px 0;
}

.callout {
    border-radius: 18px;
    padding: 14px;
    border: 1px solid rgba(0, 194, 255, .22);
    background: rgba(0, 194, 255, .08);
    color: rgba(11, 18, 32, .90);
}

.callout strong {
    color: rgba(11, 18, 32, .95);
}

.details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

details.faq {
    border-radius: 22px;
    padding: 14px 16px;
}

details.faq summary {
    cursor: pointer;
    font-weight: 900;
    list-style: none;
    color: rgba(11, 18, 32, .92);
}

details.faq summary::-webkit-details-marker {
    display: none;
}

details.faq summary .q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

details.faq summary .chev {
    width: 34px;
    height: 34px;
    border-radius: 16px;
    border: 1px solid rgba(11, 18, 32, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .70);
}

details.faq[open] summary .chev {
    transform: rotate(180deg);
}

details.faq .a {
    margin-top: 10px;
    color: rgba(11, 18, 32, .72);
    font-size: 13px;
}

/* Footer (dark glass for contrast) */
.footer {
    margin-top: 26px;
    border-top: 1px solid rgba(11, 18, 32, .10);
    background: #000d;
    color: rgba(255, 255, 255, .88);
}

.footer .wrap {
    padding: 26px 0;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 16px;
}

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

.footer .brandline img {
    height: 48px;
    width: auto;
}

.footer h4 {
    margin: 0 0 10px;
    font-size: 14px;
    letter-spacing: -0.01em;
    color: #fff;
}

.footer a {
    color: rgba(255, 255, 255, .86);
    font-weight: 800;
    font-size: 13px;
    display: inline-block;
    margin: 6px 0;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .muted {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    margin-top: 10px;
}

.footer .logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.footer .logos img {
    width: 120px;
    height: auto;
    opacity: .88;
    border-radius: 12px;
}

.footer .bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 12px 0 16px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

/* Page header / prose */
.pagehead {
    padding: 26px 0 8px;
}

.pagehead h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: -0.02em;
}

.pagehead p {
    margin: 10px 0 0;
    color: rgba(11, 18, 32, .72);
    font-size: 14px;
    max-width: 76ch;
}

.prose {
    padding: 18px;
}

.prose h2 {
    margin: 0 0 10px;
    font-size: 18px;
}

.prose h3 {
    margin: 14px 0 8px;
    font-size: 15px;
}

.prose p, .prose li {
    color: rgba(11, 18, 32, .72);
    font-size: 13px;
}

.prose ul {
    margin: 8px 0;
    padding-left: 18px;
}

.prose code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(11, 18, 32, .10);
    padding: 1px 6px;
    border-radius: 10px;
    color: rgba(11, 18, 32, .92);
}

/* Back-to-top (dark glass for visibility) */
.to-top {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .20);
    background: rgba(13, 19, 34, .62);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    color: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.to-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.to-top svg {
    width: 18px;
    height: 18px;
}
a.logo-trust {
    height: 40px;
    background: #fff2;
    border: 1px solid #fff2;
    border-radius: 5px;
    padding: 5px;
    margin: 0;
}
.logo-block {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
}
.logo-trust img {
    height: 100%;
}
.bottom .muted {
    margin-top: 0
}
/* Responsive */
@media (max-width: 980px) {
    .hero-side {
        flex-wrap: wrap;
    }
    .hero-side .stat {
        flex: 100%;
    }
    .hero .grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .nav {
        display: none;
    }

    .menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-panel {
        display: block;
    }
}

@media (max-width: 520px) {
    .topbar .bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-card {
        padding: 18px;
    }

    .stat {
        padding: 16px;
    }

    .offer-brand img {
        width: 120px;
    }

    .offer-actions {
        flex-direction: column;
        align-items: stretch;
    }

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