/* =========================
   WM TOKENS
   ========================= */
:root {
    --wm-bg: #fff;
    --wm-ink: #0b0b0b;
    --wm-ink2: #1a1a1a;
    --wm-muted: #6f6f6f;
    --wm-line: #e9e9e9;
    --wm-chip: #f3f3f3;
    --wm-card: #ffffff;
    --wm-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    --wm-shadow2: 0 10px 26px rgba(0, 0, 0, .07);
    --wm-radius: 20px;
    --wm-radius2: 14px;
}

.navbar-desktop i {
    width: 17px;
    height: 17px;
    position: absolute;
}

.nav-label {
    padding-left: 20px;   
}

.label {
    text-align: left;
}

/* =========================
   PAGE FRAME
   ========================= */
.wm-page {
    background: var(--wm-bg);
    color: var(--wm-ink);
}

.wm-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.wm-section {
    padding: 56px 0;
    border-top: 1px solid var(--wm-line);
}

.wm-section:first-of-type {
    border-top: none;
}

/* =========================
   TYPOGRAPHY
   ========================= */
.wm-kicker {
    font: 700 14px/1.2 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    text-transform: uppercase;
    color: var(--wm-muted);
    margin: 0 0 10px;
}

#hero .wm-kicker {
    font-size: 20px;
    padding-bottom: 10px;
}

#hero img {
    margin-bottom: 20px;
}

.wm-h1 {
    font-family: "Bebas Neue", system-ui, sans-serif;
    letter-spacing: .02em;
    line-height: .92;
    font-size: clamp(66px, 4.2vw, 108px);
    margin: 0 0 12px;
    font-weight: 400;
    max-width: 20ch
}

.wm-h1 span {
    font-size: clamp(31px, 3.2vw, 108px);
    display: inline;
    color: #666;
    padding-right: 3px;
    line-height: 1;
}

.wm-lead {
    font: 400 16px/1.7 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--wm-ink2);
    max-width: 72ch;
    margin: 0;
    line-height: 1.5;
}

.wm-h2 {
    font-family: "Bebas Neue", system-ui, sans-serif;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1;
    font-size: clamp(40px, 4.6vw, 72px);
    margin: 0 0 14px;
}

.wm-sub {
    font: 400 16px/1.7 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--wm-muted);
    margin: 0 0 18px;
    max-width: 78ch;
    text-align: left;
}

/* =========================
   HERO (SPLIT)
   ========================= */
#hero {
    background: #eee;
}

/* Base: black circle, white centered text */
span.badge-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}

/* Optional: auto-size circle to content (keeps it round) */
span.badge-circle--auto {
    width: auto;
    height: auto;
    min-width: 28px;
    min-height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    /* pill when text is long */
}


.wm-hero {
    padding-top: 110px;
    padding-bottom: 25px;
}

.wm-heroGrid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 26px;
    align-items: stretch;
}

.wm-panel {
    background: var(--wm-card);
    border: 1px solid var(--wm-line);
    border-radius: var(--wm-radius);
    box-shadow: 0 10px 18px rgba(0, 0, 0, .15);
    padding: 26px;
    overflow: hidden;
    position: relative;
}

.wm-panel:before {
    content: "";
    position: absolute;
    inset: -2px -2px auto -2px;
    height: 10px;
    background: repeating-linear-gradient(90deg,
            rgba(0, 0, 0, 0) 0 14px,
            rgba(0, 0, 0, .18) 14px 15px);
    opacity: .9;
}

.wm-badgeRow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 22px;
}

.wm-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--wm-chip);
    border: 1px solid var(--wm-line);
    font: 700 14px/1 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--wm-ink2);
}

.wm-badge i {
    opacity: .85;
}

.wm-ctaRow {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.wm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #000;
    text-decoration: none;
    font: 900 50px/1 "Bebas Neue", system-ui, sans-serif;
}

.wm-btn i {
    font-size: 34px;
}

.wm-btn:hover {
    filter: brightness(.95);
}

.wm-btn--ghost {
    background: #fff;
    color: var(--wm-ink);
    border-color: var(--wm-line);
    box-shadow: none;
}

.wm-btn--ghost:hover {
    border-color: #cfcfcf;
}

.wm-micro {
    font: 400 14px/1.6 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--wm-muted);
}

/* Right column: price/promise */
.wm-priceBox {
    display: grid;
    gap: 14px;
    align-content: start;
}

.wm-price {
    border-radius: var(--wm-radius2);
    border: 1px solid #ccc;
    padding: 16px;
    background: #eee;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .15);
}

.wm-price .big {
    font-family: "Bebas Neue", system-ui, sans-serif;
    font-size: 44px;
    letter-spacing: .02em;
    margin: 0;
    line-height: 1;
}

.wm-price .label {
    font: 400 15px/1 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    text-transform: uppercase;
    color: var(--wm-muted);
    margin: 8px 0 0;
    line-height: 1.4;
}

.wm-check {
    display: flex;
    gap: 12px;
    align-items: anchor-center;
    margin-bottom: 3px;
}

.wm-check i {
    margin-top: 2px;
}

.wm-check p {
    margin: 0;
    font: 400 14px/1.6 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--wm-ink2);
    line-height: 1;
    font-weight: bold;
}

/* =========================
   SHARED CARD/TILE BASE
   ========================= */
.wm-tile,
.wm-fault,
.wm-step,
.wm-code,
.wm-why,
#recenzije .review-card,
#faq .wm-faqItem {
    border-radius: var(--wm-radius2);
}

.wm-tile,
.wm-fault,
.wm-step,
.wm-code,
.wm-why,
#recenzije .review-card {
    padding: 16px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .15);
}

.wm-tile,
.wm-code {
    background: #fff;
    border: 1px solid var(--wm-line);
}

.wm-fault,
.wm-step,
.wm-why {
    background: #eee;
    border: 1px solid #ccc;
}

/* =========================
   60 SECONDS GRID
   ========================= */
.wm-quickGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.wm-tile {
    min-height: 182px;
}

.wm-tile h3 {
    margin: 0 0 8px;
    font-family: "Bebas Neue", system-ui, sans-serif;
    font-weight: 400;
    font-size: 28px;
    letter-spacing: .02em;
    line-height: 1;
}

.wm-tile ul {
    margin: 0;
    padding-left: 18px;
    color: var(--wm-ink2);
    font: 400 14px/1.7 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

.service-grid a {
    text-decoration: none;
    color: inherit
}

.service-card {
    position: relative;
}

.service-card h3,
.service-card p {
    z-index: 2;
    text-align: left;
}

.corner {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 100px;
    opacity: .15;
    z-index: 1;
}

.info {
    position: absolute;
    right: 5px;
    bottom: -4px;
    font-size: 35px;
}

.wm-noteLine {
    margin-top: 14px;
    font: 400 13px/1.7 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--wm-muted);
    border-left: 3px solid #111;
    padding-left: 12px;
}

/* =========================
   FAULTS GRID
   ========================= */
.wm-faultGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.wm-fault {
    min-height: 170px;
}

.wm-fault .top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.wm-fault .top i {
    opacity: .85;
}

.wm-fault h3 {
    margin: 0;
    font-family: "Bebas Neue", system-ui, sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1;
    letter-spacing: .02em;
}

.wm-fault p {
    margin: 0;
    font: 400 14px/1.7 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--wm-ink2);
    text-align: left;
}

/* =========================
   PRICING
   ========================= */
.wm-priceGrid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 16px;
    margin-top: 18px;
    align-items: start;
}

.wm-box {
    border: 1px solid var(--wm-line);
    border-radius: var(--wm-radius);
    padding: 18px;
    background: #fff;
    box-shadow: var(--wm-shadow2);
}

.wm-box h3 {
    margin: 0 0 10px;
    font-family: "Bebas Neue", system-ui, sans-serif;
    font-weight: 400;
    font-size: 34px;
    letter-spacing: .02em;
    line-height: 1;
}

.wm-box p,
.wm-box li {
    font: 400 14px/1.8 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--wm-ink2);
}

.wm-box ul {
    margin: 0;
    padding-left: 18px;
}

.wm-pillRow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.wm-pill {
    border: 1px solid var(--wm-line);
    background: var(--wm-chip);
    border-radius: 999px;
    padding: 10px 12px;
    font: 700 12px/1 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--wm-ink2);
}

/* =========================
   STEPS
   ========================= */
.wm-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.wm-step .n {
    font-family: "Bebas Neue", system-ui, sans-serif;
    font-size: 42px;
    line-height: 1;
    margin: 0 0 6px;
}

.wm-step h3 {
    margin: 0 0 8px;
    font-family: "Bebas Neue", system-ui, sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1;
    letter-spacing: .02em;
}

.wm-step p {
    margin: 0;
    font: 400 14px/1.7 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--wm-ink2);
}

/* =========================
   CODES GRID
   ========================= */
.wm-codeGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.wm-code h3 {
    margin: 0 0 8px;
    font-family: "Bebas Neue", system-ui, sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1;
    letter-spacing: .02em;
}

.wm-code p {
    margin: 0;
    font: 400 14px/1.7 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--wm-ink2);
}

.wm-code .mini {
    margin-top: 10px;
    color: var(--wm-muted);
    font-size: 13px;
}

/* =========================
   WHY GRID (FA ICONS)
   ========================= */
.wm-whyGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.wm-why {
    min-height: 132px;
}

.wm-whyTop {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.wm-whyTop i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--wm-line);
    color: var(--wm-ink);
    opacity: .95;
    flex: 0 0 auto;
    border: 1px solid #ccc;
}

.wm-why h3 {
    margin: 0;
    font-family: "Bebas Neue", system-ui, sans-serif;
    font-weight: 400;
    font-size: 28px;
    letter-spacing: .02em;
    line-height: 1;
}

.wm-why p {
    margin: 0;
    font: 400 14px/1.7 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--wm-ink2);
    text-align: left;
}

/* =========================
   REON TAGS
   ========================= */
.wm-tagRow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.wm-tag {
    border: 1px solid var(--wm-line);
    background: var(--wm-chip);
    border-radius: 999px;
    padding: 10px 12px;
    font: 700 12px/1 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--wm-ink2);
    white-space: nowrap;
}

/* =========================
   REVIEWS (GRID + PREMIUM WM LOOK)
   ========================= */
#recenzije {
    background: #fff !important;
}

#recenzije .wm-link {
    color: var(--wm-ink);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

#recenzije .wm-link:hover {
    opacity: .8;
}

#recenzije .reviews-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch;
    margin-top: 18px;
}

#recenzije .review-card {
    background: #eee;
    border: 1px solid #ccc;
    position: relative;
    height: 100%;
}

#recenzije .review-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

#recenzije .review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ccc;
    font: 700 16px/1 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--wm-ink);
    flex: 0 0 auto;
}

#recenzije .review-name {
    font: 700 14px/1.2 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--wm-ink);
    margin: 0 0 2px;
}

#recenzije .review-meta {
    margin-top: 2px;
}

#recenzije .stars {
    display: inline-flex;
    gap: 4px;
}

#recenzije .stars svg {
    width: 16px;
    height: 16px;
    fill: #111;
    opacity: .9;
}

#recenzije .review-text {
    margin: 0;
    font: 400 14px/1.7 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--wm-ink2);
}

#recenzije .wm-footLink {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

#recenzije .wm-footLink .wm-btn {
    padding: 12px 14px;
    border-radius: 14px;
    line-height: .8;
    font-weight: 400;
    font-size: 40px;
    text-align: left;
}

/* =========================
   TOP STRIPE (UTILITY)
   ========================= */
.top-stripe {
    position: relative;
}

.top-stripe::before {
    content: "";
    position: absolute;
    inset: -2px -2px auto -2px;
    height: 10px;
    background: repeating-linear-gradient(90deg,
            rgba(0, 0, 0, 0) 0 14px,
            rgba(0, 0, 0, .18) 14px 15px);
    opacity: .9;
    pointer-events: none;
}

/* =========================
   FAQ (PREMIUM WM ACCORDION)
   ========================= */
#faq .wm-faq {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

#faq .wm-faqItem {
    background: #fff;
    border: 1px solid var(--wm-line);
    box-shadow: 0 10px 18px rgba(0, 0, 0, .05);
    overflow: hidden;
}

#faq .wm-faqQ {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    font: 800 14px/1.3 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    letter-spacing: .2px;
    color: var(--wm-ink);
    position: relative;
}

#faq .wm-faqQ span {
    flex: 1 1 auto;
}

#faq .wm-faqIcon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--wm-chip);
    border: 1px solid var(--wm-line);
    color: var(--wm-ink);
    flex: 0 0 auto;
    transition: transform .18s ease;
}

#faq .wm-faqQ[aria-expanded="true"] .wm-faqIcon {
    transform: rotate(45deg);
}

#faq .wm-faqA {
    padding: 16px;
}

#faq .wm-faqA p {
    margin: 0;
    font: 400 14px/1.7 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--wm-ink2);
}

/* subtle divider feel */
#faq .wm-faqQ::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 1px;
    background: var(--wm-line);
    opacity: 0;
}

#faq .wm-faqQ[aria-expanded="true"]::after {
    opacity: 1;
}

/* =========================
   SECTION BACKGROUNDS
   ========================= */
#faq,
#reon,
#kodovi,
#cene,
#steta,
#saveti,
#usluge {
    background: #ccc;
}

#why {
    background: #fff;
}

/* =========================
   ACCESSIBILITY
   ========================= */
.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
    padding: 56px 20px 22px;
    color: rgba(255, 255, 255, .86);
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 28px;
    align-items: start;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    justify-items: center;
}

.footer-col {
    min-width: 0;
}

.footer-logo {
    display: inline-block;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: .5px;
    font-size: 40px;
    line-height: 1;
    margin-bottom: 6px;
}

.footer-tagline {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
}

.footer-title {
    margin: 0 0 12px;
    font-size: 27px;
    letter-spacing: .2px;
    color: #fff;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .22);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: grid;
    gap: 10px;
}

.footer-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    color: rgba(255, 255, 255, .82);
}

.footer-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: rgba(255, 255, 255, .9);
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    text-decoration: none;
}

.footer-btn--primary {
    background: var(--secondary, #FFED00);
    color: #111;
    border-color: rgba(0, 0, 0, .08);
}

.footer-btn--primary:hover {
    text-decoration: none;
    opacity: .95;
}

.footer-btn--ghost {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .14);
}

.footer-btn--ghost:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, .12);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, .86);
}

.footer-links a:hover {
    color: #fff;
}

.footer-badges {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: rgba(255, 255, 255, .82);
}

.footer-badges i {
    margin-right: 8px;
    color: rgba(255, 255, 255, .92);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
}

.footer-copy {
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: 13px;
    padding: 0 20px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, .66);
}

.footer-legal a {
    color: rgba(255, 255, 255, .76);
}

.footer-legal a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-dot {
    opacity: .5;
}

/* =========================
   CONTACT
   ========================= */
.section-lead {
    max-width: 720px;
    margin: 10px 0 24px;
    color: rgba(0, 0, 0, .72);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 22px;
    align-items: start;
}

.contact-cards {
    display: grid;
    gap: 14px;
}

.contact-card,
.contact-formCard {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.contact-card {
    padding: 16px;
}

.contact-card__head {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.contact-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .08);
    font-size: 18px;
}

.contact-card__title {
    margin: 0;
    font-size: 28px;
    font-weight: 400;
}

.contact-card__meta {
    margin: 2px 0 0;
    font-size: 13px;
    color: rgba(0, 0, 0, .62);
}

.contact-card__cta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    text-decoration: none;
}

.contact-card__ctaLabel {
    font-weight: 800;
    font-size: 16px;
    color: #111;
}

.contact-card__ctaHint {
    font-size: 12px;
    color: rgba(0, 0, 0, .55);
    white-space: nowrap;
}

.contact-card__miniLink {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .08);
    color: #111;
    text-decoration: none;
    width: fit-content;
}

.contact-card__note {
    margin-top: 6px;
    font-size: 13px;
    color: rgba(0, 0, 0, .62);
}

.contact-card--compact .contact-card__head {
    margin-bottom: 8px;
}

/* Form card */
.contact-formCard {
    padding: 18px;
}

.contact-formCard__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.contact-formCard__title {
    margin: 0;
    font-size: 28px;
    font-weight: 400;
}

.contact-formCard__sub {
    margin: 6px 0 0;
    color: rgba(0, 0, 0, .62);
    font-size: 13px;
    max-width: 520px;
}

.contact-formCard__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    color: #111;
    font-weight: 800;
    border: 1px solid rgba(0, 0, 0, .10);
    white-space: nowrap;
}

.contact-formGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0;
}

.field {
    display: grid;
    gap: 7px;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 12px;
    font-weight: 800;
    color: rgba(0, 0, 0, .70);
}

.contact-formGrid input,
.contact-formGrid select,
.contact-formGrid textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: #eee;
    padding: 12px 12px;
    font-size: 14px;
    outline: none;
}

.contact-formGrid textarea {
    resize: vertical;
    min-height: 92px;
}

.contact-formActions {
    display: grid;
    gap: 10px;
    margin-top: 2px;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, .10);
    color: #111;
    font-weight: 900;
    cursor: pointer;
    background: #ccc;
}

.contact-submit:hover {
    opacity: .96;
}

.contact-fineprint {
    margin: 0;
    font-size: 12px;
    color: rgba(0, 0, 0, .55);
}

form {
    padding-top: 25px;
}

/* =========================
   BRAND MARQUEE
   ========================= */
.brand-marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 3px 0;
    font-family: "Bebas Neue", sans-serif;
    color: #000;
    font-size: 50px;
}

.brand-marquee p {
    display: inline-block;
    padding-left: 100%;
    animation: brand-scroll 15s linear infinite;
    margin: 0;
}

@keyframes brand-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* =========================
   BACK TO TOP
   ========================= */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#back-to-top i {
    pointer-events: none;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width:1100px) {
    #recenzije .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width:700px) {
    #recenzije .reviews-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width:980px) {
    .wm-heroGrid {
        gap: 0;
        grid-template-columns: 1fr;
    }

    #hero .wm-kicker {
        font-size: 18px;
        padding-bottom: 0;
    }

    .wm-h1 {
        font-size: 50px;
        max-width: unset;
    }

    .wm-lead {
        font-size: 15px;
        line-height: 1.4;
    }

    .wm-btn {
        font-size: 40px;
    }

    .wm-wrap {
        padding: 0;
    }

    .wm-panel {
        border-radius: 0;
    }

    .wm-faultGrid {
        grid-template-columns: repeat(1, 1fr);
    }

    .wm-quickGrid {
        grid-template-columns: 1fr;
    }

    .wm-priceGrid {
        grid-template-columns: 1fr;
    }

    .wm-steps {
        grid-template-columns: 1fr;
    }

    .wm-codeGrid {
        grid-template-columns: 1fr;
    }

    .wm-whyGrid {
        grid-template-columns: 1fr;
    }

    .wm-hero {
        padding-top: 60px;
        padding-bottom: 0;
    }

    #steta,
    #kvarovi,
    #cene,
    #procedura,
    #kodovi,
    #why,
    #reon,
    #saveti,
    #usluge {
        padding: 20px;
    }

    /* Reviews footer CTA */
    #recenzije {
        padding: 20px;
    }

    #recenzije .wm-footLink {
        justify-content: stretch;
    }

    #recenzije .wm-footLink .wm-btn {
        width: 100%;
        justify-content: center;
    }

    /* FAQ spacing */
    #faq {
        padding: 20px;
    }

    #faq .wm-faqQ {
        padding: 14px 14px;
    }

    #faq .wm-faqA {
        padding: 14px;
    }

    #faq .wm-faqIcon {
        border-radius: 12px;
    }

    #kontakt .wm-h2 {
        padding-top: 40px;
    }

    #kontakt .section-inner {
        padding: 0;
        padding-bottom: 20px;
    }

    .footer-tagline {
        text-align: center;
    }

    /* Contact */
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .contact-formGrid {
        grid-template-columns: 1fr;
    }

    .field--full {
        grid-column: auto;
    }
}

@media (max-width:980px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .site-footer {
        padding: 44px 0 18px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-list {
        justify-content: space-around;
    }
}

#usluge .omeni {
    margin-top: 30px;
    text-align: left;
    font-size: 60px;
    font-weight: 400;
    background: #ddd;
    padding: 15px;
    margin-bottom: 20px
}