/* TOKENS */
:root {
    --black: #0a0a0a;
    --black2: #141414;
    --black3: #1e1e1e;
    --gold: #c9993a;
    --gold-lt: #e2b45a;
    --light: #f4f3ef;
    --muted: #888888;
    --border: rgba(255, 255, 255, .08);
    --radius: 4px;
    --ff-head: 'Barlow Condensed', sans-serif;
    --ff-body: 'Barlow', sans-serif;
}

/* BASE */
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--ff-body);
    background: var(--black);
    color: var(--light);
    font-size: 1rem;
    line-height: 1.65;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
    font-family: var(--ff-head);
    font-weight: 700;
    letter-spacing: .03em;
    line-height: 1.1;
}
a {
    color: var(--gold);
    text-decoration: none;
}
a:hover {
    color: var(--gold-lt);
}

/* NAVBAR */
.zt-nav {
    background: rgba(10, 10, 10, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: .75rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: background .3s;
}
.zt-nav .navbar-brand {
    font-family: var(--ff-head);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--light);
    text-transform: uppercase;
}
.zt-nav .navbar-brand span {
    color: var(--gold);
}
.zt-nav .nav-link {
    font-family: var(--ff-head);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(244, 243, 239, .75);
    padding: .4rem .9rem !important;
    transition: color .2s;
}
.zt-nav .nav-link:hover {
    color: var(--gold-lt);
}
.zt-nav .btn-nav {
    font-family: var(--ff-head);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: 0;
    border-radius: var(--radius);
    padding: .45rem 1.3rem;
    transition: background .2s, transform .15s;
}
.zt-nav .btn-nav:hover {
    background: var(--gold-lt);
    transform: translateY(-1px);
}
.navbar-toggler {
    border-color: var(--border);
}
.navbar-toggler-icon {
    filter: invert(1);
}

/* SECTION LABELS */
.section-label {
    font-family: var(--ff-head);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: .6rem;
}
.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
}
.divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 1.8rem;
}

/* HERO */
#hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201, 153, 58, .09) 0%, transparent 60%),
        repeating-linear-gradient(90deg,
            rgba(255, 255, 255, .025) 0px,
            rgba(255, 255, 255, .025) 1px,
            transparent 1px,
            transparent 80px),
        repeating-linear-gradient(0deg,
            rgba(255, 255, 255, .025) 0px,
            rgba(255, 255, 255, .025) 1px,
            transparent 1px,
            transparent 80px);
    pointer-events: none;
}
.hero-accent {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    border: 1px solid rgba(201, 153, 58, .18);
    border-radius: 50%;
    pointer-events: none;
}
.hero-accent::before {
    content: '';
    position: absolute;
    inset: 40px;
    border: 1px solid rgba(201, 153, 58, .1);
    border-radius: 50%;
}
.hero-kicker {
    font-family: var(--ff-head);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 153, 58, .4);
    display: inline-block;
    padding: .3rem .9rem;
    border-radius: 2px;
    margin-bottom: 1.4rem;
}
.hero-title {
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.02;
    margin-bottom: 1.5rem;
    letter-spacing: .02em;
}
.hero-title em {
    color: var(--gold);
    font-style: normal;
}
.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(244, 243, 239, .72);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.btn-primary-zt {
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: 0;
    padding: .75rem 2rem;
    border-radius: var(--radius);
    transition: background .2s, transform .15s, box-shadow .2s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.btn-primary-zt:hover {
    background: var(--gold-lt);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 153, 58, .3);
}
.btn-outline-zt {
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--light);
    border: 1px solid rgba(244, 243, 239, .3);
    padding: .75rem 2rem;
    border-radius: var(--radius);
    transition: border-color .2s, color .2s, transform .15s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
}
.btn-outline-zt:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.hero-stats {
    margin-top: 3.5rem;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.hero-stat strong {
    font-family: var(--ff-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
}
.hero-stat span {
    font-size: .78rem;
    font-weight: 400;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* SECTIONS */
.zt-section {
    padding: 5rem 0;
}
.zt-section-alt {
    background: var(--black2);
}
.zt-section-dark {
    background: var(--black3);
}

/* OFFER CARDS */
.offer-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: border-color .25s, transform .25s, background .25s;
    position: relative;
    overflow: hidden;
}
.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}
.offer-card:hover {
    border-color: rgba(201, 153, 58, .4);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .07);
}
.offer-card:hover::before {
    transform: scaleX(1);
}
.offer-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}
.offer-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .6rem;
    letter-spacing: .06em;
}
.offer-card p {
    font-size: .92rem;
    color: rgba(244, 243, 239, .7);
    margin: 0;
    line-height: 1.6;
}
.offer-tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 153, 58, .35);
    padding: .15rem .55rem;
    border-radius: 2px;
    margin-bottom: .8rem;
    display: inline-block;
}

/* TARGET SEGMENTS */
.segment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .03);
    transition: border-color .2s, background .2s;
}
.segment-item:hover {
    border-color: rgba(201, 153, 58, .3);
    background: rgba(201, 153, 58, .05);
}
.segment-item .si-icon {
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: .1rem;
}
.segment-item h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .2rem;
    letter-spacing: .05em;
}
.segment-item p {
    font-size: .85rem;
    color: rgba(244, 243, 239, .65);
    margin: 0;
}

/* PROCESS */
.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .03);
    transition: border-color .25s;
}
.process-step:hover {
    border-color: rgba(201, 153, 58, .3);
}
.step-num {
    font-family: var(--ff-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    width: 44px;
    opacity: .7;
}
.process-step h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .3rem;
    letter-spacing: .06em;
}
.process-step p {
    font-size: .88rem;
    color: rgba(244, 243, 239, .65);
    margin: 0;
}

/* QUOTE BOX */
.quote-box {
    background: rgba(201, 153, 58, .06);
    border: 1px solid rgba(201, 153, 58, .25);
    border-radius: var(--radius);
    padding: 2rem 2rem 2rem 2.5rem;
    position: relative;
}
.quote-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    border-radius: var(--radius) 0 0 var(--radius);
}
.quote-box h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold-lt);
    letter-spacing: .06em;
}
.quote-box ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .45rem .6rem;
}
.quote-box ul li {
    font-size: .85rem;
    color: rgba(244, 243, 239, .78);
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    padding: .3rem .7rem;
    border-radius: 2px;
}
.quote-box ul li::before {
    content: '— ';
    color: var(--gold);
}

/* WHY US */
.why-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.4rem 1.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .03);
    height: 100%;
    transition: border-color .2s, background .2s;
}
.why-item:hover {
    border-color: rgba(201, 153, 58, .35);
    background: rgba(201, 153, 58, .04);
}
.why-item .wi-icon {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: .1rem;
}
.why-item h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .3rem;
    letter-spacing: .05em;
}
.why-item p {
    font-size: .88rem;
    color: rgba(244, 243, 239, .65);
    margin: 0;
}

/* ABOUT */
.about-block {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
}
.about-block p {
    font-size: 1rem;
    color: rgba(244, 243, 239, .8);
    margin-bottom: 1rem;
    line-height: 1.75;
}
.about-block p:last-child {
    margin-bottom: 0;
}

/* CONTACT */
.contact-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: border-color .2s;
}
.contact-card:hover {
    border-color: rgba(201, 153, 58, .35);
}
.contact-card .cc-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.contact-card h5 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: .5rem;
    text-transform: uppercase;
}
.contact-card p,
.contact-card a {
    font-size: .95rem;
    color: rgba(244, 243, 239, .75);
}
.contact-card a:hover {
    color: var(--gold-lt);
}
.contact-cta {
    background: linear-gradient(135deg, var(--black3) 0%, rgba(20, 20, 20, .9) 100%);
    border: 1px solid rgba(201, 153, 58, .2);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    text-align: center;
}
.contact-cta h3 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: .8rem;
}
.contact-cta p {
    color: rgba(244, 243, 239, .65);
    margin-bottom: 1.8rem;
}

/* FOOTER */
footer {
    background: #080808;
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
}
.footer-brand {
    font-family: var(--ff-head);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--light);
    text-transform: uppercase;
    margin-bottom: .4rem;
}
.footer-brand span {
    color: var(--gold);
}
footer p,
footer address {
    font-size: .83rem;
    color: rgba(244, 243, 239, .45);
    font-style: normal;
    line-height: 1.75;
}
footer .rejestr {
    font-size: .78rem;
    color: rgba(244, 243, 239, .35);
    line-height: 2;
}
footer .footer-links a {
    font-size: .8rem;
    color: rgba(244, 243, 239, .45);
    transition: color .2s;
    font-family: var(--ff-head);
    letter-spacing: .06em;
}
footer .footer-links a:hover {
    color: var(--gold);
}
.footer-divider {
    border-color: var(--border);
    margin: 1.5rem 0;
}
footer .copy {
    font-size: .78rem;
    color: rgba(244, 243, 239, .3);
}

/* COOKIE BANNER */
#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0d0d0d;
    border-top: 1px solid rgba(201, 153, 58, .3);
    padding: 1.25rem 1.5rem;
    z-index: 9999;
    display: none;
}
#cookieBanner p {
    font-size: .84rem;
    color: rgba(244, 243, 239, .72);
    margin: 0;
}
.cookie-btn {
    font-family: var(--ff-head);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .4rem 1.1rem;
    border-radius: var(--radius);
    border: 0;
    cursor: pointer;
}
.cookie-btn-accept {
    background: var(--gold);
    color: var(--black);
}
.cookie-btn-accept:hover {
    background: var(--gold-lt);
}
.cookie-btn-reject {
    background: transparent;
    color: rgba(244, 243, 239, .55);
    border: 1px solid var(--border);
}
.cookie-btn-reject:hover {
    color: var(--light);
    border-color: rgba(244, 243, 239, .3);
}

/* UTILS */
.text-gold {
    color: var(--gold);
}
.text-muted-zt {
    color: var(--muted);
}
@media (max-width: 768px) {
    .zt-section {
        padding: 3.5rem 0;
    }
    .hero-stats {
        gap: 1.5rem;
    }
    .hero-accent {
        display: none;
    }
    .contact-cta {
        padding: 2rem 1.2rem;
    }
}