/* ============================================================================
   MegaMajice.com — site stylesheet (fresh rewrite, no WordPress heritage).
   Brand: yellow #FFD507 / navy #001E50 on white, font Lexend (fonts.css).
   Sections: tokens/reset → chrome (topbar/header/nav/footer) → buttons →
   home sections → CMS prose + content components → contact page → misc.
   ========================================================================== */

:root {
    --yellow: #FFD507;
    --yellow-bright: #ffde03;
    --navy: #001E50;
    --ink: #040404;
    --body: #33415c;
    --line: #e5e7eb;
    --bg-soft: #f8f9fb;
    --bg-yellow-soft: #fff8d6;
    --radius: 14px;
    --wrap: 1120px;
    --shadow: 0 10px 30px rgba(0, 30, 80, .08);
    --font: 'Lexend', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---- minimal reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--body);
    background: #fff;
}
img { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5 { color: var(--navy); line-height: 1.2; margin: 0 0 .6em; font-weight: 700; }
h1, .h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
a { color: var(--navy); }
a:hover { color: #0a3a8c; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.muted { color: #6b7280; font-size: .88rem; }
.ico { width: 1.15em; height: 1.15em; vertical-align: -.2em; flex: none; }

/* ---- buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    border: 0;
    border-radius: 999px;
    font: 600 1rem var(--font);
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-cta { background: var(--yellow); color: var(--navy); box-shadow: 0 4px 14px rgba(255, 213, 7, .45); }
.btn-cta:hover { background: var(--yellow-bright); color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #0a3a8c; color: #fff; }
.btn-ghost { background: #fff; color: var(--navy); border: 2px solid var(--navy); padding: 11px 24px; }
.btn-lg { padding: 16px 34px; font-size: 1.08rem; }

/* ============================== chrome ==================================== */

/* ---- vacation banner (godišnji odmor) ---- */
.vac-banner {
    background: #fff;
    text-align: center;
    padding: 10px 14px 0;
}

/* ---- admin edit bar ---- */
.adminbar {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #111827;
    color: #9ca3af;
    font-size: .85rem;
    padding: 6px 16px;
}
.adminbar a { color: var(--yellow); text-decoration: none; }

/* ---- topbar (DTFPrint.hr promo) ---- */
/* notice boxes above the header (live style: yellow, navy border, centered) */
.notice-box {
    display: inline-block;
    max-width: 1080px;
    background: var(--yellow);
    border: 1px solid var(--navy);
    color: var(--navy);
    font-weight: 600;
    font-size: .85rem;
    padding: 0 10px;
    text-align: center;
}
.topbar { background: #fff; text-align: center; padding: 4px 14px 8px; }
.topbar-dtf u { font-weight: 700; text-underline-offset: 2px; }
.topbar-dtf:hover .notice-box { background: var(--yellow-bright, #ffe14d); }
.topbar-dtf { display: inline-block; color: var(--navy); text-decoration: none; }

/* ---- header ---- */
.hdr {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 30, 80, .08);
}
.hdr-in {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 74px;
}
.hdr-logo { display: flex; flex: none; }
.hdr-logo img { width: 200px; height: auto; }
.hdr-ctas { margin-left: auto; }

/* nav */
.nav { display: flex; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: none;
    border: 0;
    border-radius: 10px;
    font: 600 .98rem var(--font);
    color: var(--navy);
    text-decoration: none;
    cursor: pointer;
}
.nav-link:hover { background: var(--bg-yellow-soft); color: var(--navy); }
.nav-caret {
    width: 8px; height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .15s;
}
.nav-drop { position: relative; }
.nav-drop.is-open > .nav-link { background: var(--bg-yellow-soft); }
.nav-drop.is-open .nav-caret { transform: rotate(225deg) translateY(-2px); }
.nav-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 14px;
    min-width: 240px;
    z-index: 60;
}
/* invisible bridge over the 8px gap between the trigger and the panel — without
   it the cursor drops out of .nav-drop:hover on the way down and the panel
   closes before it can be reached */
.nav-panel::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 0;
    right: 0;
    height: 9px;
}
.nav-drop.is-open .nav-panel { display: block; }
.nav-panel--cards {
    display: none;
    grid-template-columns: repeat(4, 128px);
    gap: 10px;
}
.nav-drop.is-open .nav-panel--cards { display: grid; }
@media (min-width: 1024px) {
    /* desktop: dropdowns also open on hover (click still works and is the a11y path) */
    .nav-drop:hover .nav-panel { display: block; }
    .nav-drop:hover .nav-panel--cards { display: grid; }
    .nav-drop:hover > .nav-link { background: var(--bg-yellow-soft); }
}
.nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
}
.nav-card:hover { background: var(--bg-yellow-soft); }
.nav-card img { width: 96px; height: 96px; border-radius: 8px; object-fit: contain; }
.nav-card small { font-weight: 500; color: #b45309; font-size: .75rem; }
.nav-all {
    grid-column: 1 / -1;
    text-align: center;
    padding: 8px;
    font-weight: 600;
    text-decoration: none;
    border-top: 1px solid var(--line);
    margin-top: 4px;
}
/* a second footer link in the same panel shares the first one's separator;
   on desktop the two sit side by side, each spanning half the card grid */
.nav-all + .nav-all { border-top: 0; margin-top: -6px; }
@media (min-width: 1024px) {
    .nav-panel--cards .nav-all { grid-column: span 2; }
    .nav-panel--cards .nav-all + .nav-all { border-top: 1px solid var(--line); margin-top: 4px; }
}
.nav-panel--links { list-style: none; margin: 0; }
.nav-panel--links li a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}
.nav-panel--links li a:hover { background: var(--bg-yellow-soft); }
.nav-cta { display: none; }

/* burger */
.hdr-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    margin-left: auto;
    background: none;
    border: 0;
    cursor: pointer;
}
.hdr-burger span {
    display: block;
    height: 3px;
    border-radius: 2px;
    background: var(--navy);
    transition: transform .2s, opacity .2s;
}
.hdr-burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hdr-burger.is-open span:nth-child(2) { opacity: 0; }
.hdr-burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1023px) {
    .hdr-ctas { display: none; }
    .hdr-burger { display: flex; }
    /* full-width dropdown panel under the header — NOT a full-screen overlay */
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        max-height: min(72vh, 580px);
        background: #fff;
        border-bottom: 1px solid var(--line);
        border-radius: 0 0 16px 16px;
        box-shadow: 0 18px 50px rgba(0, 30, 80, .22);
        overflow-y: auto;
        z-index: 60;
        padding: 8px 20px 16px;
    }
    .nav.is-open { display: block; }
    .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-link { width: 100%; justify-content: space-between; padding: 14px 10px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
    .nav-panel { position: static; box-shadow: none; border: 0; padding: 6px 0 12px; }
    .nav-panel--cards { grid-template-columns: repeat(2, 1fr); }
    .nav-cta { display: block; padding: 18px 0 4px; }
    .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---- footer: live-faithful (white main band → yellow sites band → legal bar) ---- */
.ftr { margin-top: 60px; }
.ftr-in { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.ftr-main { background: #fff; border-top: 1px solid var(--line); padding: 44px 0 38px; }
.ftr-main-grid { display: grid; grid-template-columns: 1.2fr auto 1.2fr; gap: 40px; align-items: center; }
.ftr-contact { text-align: center; }
.ftr-phones { display: grid; gap: 2px; margin: 0 0 12px; }
.ftr-phones a { font-size: 1.45rem; font-weight: 700; color: var(--navy); text-decoration: none; }
.ftr-phones a:hover { text-decoration: underline; }
.ftr-lead { color: var(--navy); font-weight: 500; margin: 0 0 14px; }
.ftr-social { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.ftr-social img { width: 44px; height: 44px; transition: transform .15s; }
.ftr-social a:hover img { transform: scale(1.1); }
.ftr-krug img { display: block; width: 175px; height: 175px; }
.ftr-blurb { text-align: center; color: var(--navy); }
.ftr-blurb p { margin: 0 auto; max-width: 380px; }
.ftr-sites { background: var(--yellow); padding: 30px 0 26px; text-align: center; }
.ftr-sites-lead { font-weight: 600; color: var(--navy); margin: 0 0 18px; }
.ftr-sites-logos { display: flex; justify-content: center; align-items: center; gap: 44px; flex-wrap: wrap; }
.ftr-sites-logos img { height: 40px; width: auto; }
.ftr-sites-logos a:hover img { opacity: .75; }
.ftr-jobs-wrap { margin: 26px 0 0; }
.ftr-jobs { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--navy); text-decoration: none; }
.ftr-jobs span { text-decoration: underline; }
.ftr-jobs img { width: 34px; height: 34px; }
.ftr-bottom { border-top: 1px solid var(--line); background: #fff; padding: 14px 0; font-size: .88rem; }
.ftr-bottom-in { display: flex; justify-content: space-between; align-items: center; gap: 10px 24px; flex-wrap: wrap; }
.ftr-links { display: flex; gap: 8px 22px; flex-wrap: wrap; }
.ftr-links a { text-decoration: none; }
.ftr-links a:hover { text-decoration: underline; }
.ftr-company { margin: 0; color: var(--body); }

@media (max-width: 900px) {
    .ftr-main-grid { grid-template-columns: 1fr; gap: 28px; justify-items: center; }
    .ftr-bottom-in { justify-content: center; text-align: center; }
}

/* ---- language switcher (floating, bottom-left) ---- */
.lang-switcher { position: fixed; left: 16px; bottom: 16px; z-index: 70; }
.lang-switcher__toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    color: var(--navy);
    font: 600 .9rem var(--font);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: var(--shadow);
    padding: 9px 15px;
    cursor: pointer;
}
.lang-switcher__globe { width: 18px; height: 18px; display: block; }
.lang-switcher__menu {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    min-width: 140px;
}
.lang-switcher__item {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}
.lang-switcher__item:hover { background: var(--bg-yellow-soft); }
.lang-switcher__item.is-current { font-weight: 700; background: var(--bg-soft); }

/* ============================ home sections =============================== */

/* hero slider — port of the old site's Swiper hero (4 slides, autoplay, loop) */
.home-slider { position: relative; background: var(--yellow); overflow: hidden; }
.hs-track { display: flex; align-items: stretch; }
.hs-slide { flex: 0 0 100%; min-width: 100%; display: flex; align-items: center; }
.hs-in {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 44px;
    align-items: center;
    width: 100%;
    padding-top: 44px;
    padding-bottom: 76px;
}
.hs-in--flip .hs-img { order: -1; }
.home-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--yellow);
    font-weight: 600;
    font-size: .88rem;
    border-radius: 999px;
    padding: 6px 14px;
    margin: 0 0 14px;
}
.hs-txt h1, .hs-txt h2 { margin-bottom: .4em; }
.hs-heart { color: #E63946; }
/* the yellow CTA disappears on the yellow slider — go navy like the old hero */
.hs-txt .btn-cta { background: var(--navy); color: #fff; box-shadow: 0 4px 14px rgba(0, 30, 80, .28); }
.hs-txt .btn-cta:hover { background: #0a3a8c; color: #fff; }
.hs-txt > p { max-width: 600px; }
.check-list { list-style: none; margin: 0 0 22px; padding: 0; }
.check-list li { display: flex; align-items: baseline; gap: 10px; padding: 4px 0; color: var(--navy); font-weight: 500; }
.check-list .ico { color: var(--navy); }
.hs-img img { display: block; max-width: 100%; height: auto; margin: 0 auto; }
.hs-img .video-facade { display: block; margin: 0 auto; max-width: 480px; }
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 30, 80, .1);
    color: var(--navy);
    transition: background .2s, color .2s;
}
.hs-arrow:hover { background: var(--navy); color: var(--yellow); }
.hs-arrow--prev { left: 16px; }
.hs-arrow--prev .ico { transform: rotate(180deg); }
.hs-arrow--next { right: 16px; }
.hs-arrow .ico { width: 22px; height: 22px; }
.hs-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 9px;
    z-index: 2;
}
.hs-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 30, 80, .25);
    cursor: pointer;
    transition: width .25s, background .25s;
}
.hs-dot:hover { background: rgba(0, 30, 80, .5); }
.hs-dot.on { width: 30px; background: var(--navy); }
@media (prefers-reduced-motion: reduce) {
    .hs-track { transition: none !important; }
}
.video-facade {
    position: relative;
    display: inline-block;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    background: #000;
}
.video-facade img { display: block; opacity: .9; }
.video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
}
.video-play .ico { width: 74px; height: 74px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.5)); transition: transform .15s; }
.video-facade:hover .video-play .ico { transform: scale(1.08); }
.video-frame { max-width: 720px; margin: 0 auto; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.sec-title { text-align: center; margin-bottom: .5em; }
.sec-title span { display: block; font-size: .62em; font-weight: 600; color: var(--body); margin-top: .4em; }
.sec-lead { text-align: center; max-width: 760px; margin: 0 auto 30px; }

.home-products { padding: 30px 0 10px; }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 26px; }
.prod-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 26px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prod-card img { width: 120px; height: 120px; }
.prod-card h3 { margin: 0; }

.home-techniques { padding: 50px 0 20px; }
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 26px 20px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-decoration: none;
}
.tech-card img { width: 96px; height: 96px; margin-bottom: 6px; }
.tech-card p { font-size: .92rem; margin: 0; }
.tech-more { font-weight: 600; color: var(--navy); margin-top: 8px; }
a.tech-card:hover { border-color: var(--yellow); box-shadow: var(--shadow); }

.home-designer { padding: 50px 0 20px; }
.design-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.design-card {
    position: relative;
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
    padding-bottom: 16px;
}
.design-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.design-card img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.design-card h3 { font-size: 1.05rem; margin: 14px 16px 2px; }
.design-card p { font-size: .88rem; margin: 0 16px 6px; }
.design-sub { color: #6b7280; font-weight: 600; font-size: .8rem !important; }
.design-badge {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 2;
    background: var(--navy);
    color: var(--yellow);
    font-size: .75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
}

.home-clients { padding: 46px 0; text-align: center; background: var(--navy); margin-top: 30px; }
.home-clients-txt { color: #fff; font-size: clamp(1.2rem, 2.6vw, 1.7rem); font-weight: 700; max-width: 780px; margin: 0 auto 22px; }

.home-band { padding: 56px 0 0; }
.home-band-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 40px;
}
.home-band-img img { display: block; margin: 0 auto; max-height: 380px; width: auto; }
.home-band-logo { max-height: 64px; width: auto; margin-bottom: 14px; border-radius: 8px; }
.home-band-txt h2 { margin-bottom: .4em; }

.home-tiktok { padding: 60px 0 10px; text-align: center; }
.home-tiktok-head { display: inline-block; margin-bottom: 24px; }
.home-tiktok-head img { max-height: 74px; width: auto; }
.tiktok-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tiktok-card {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
}
.tiktok-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tiktok-card img { width: 100%; aspect-ratio: 9/12; object-fit: cover; display: block; }
.tiktok-card p { font-size: .88rem; padding: 12px 16px; margin: 0; }

.home-dpd { padding: 56px 0 8px; }
.home-dpd-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.home-dpd-in h2 { margin-top: 18px; }
.home-dpd-photo { border-radius: var(--radius); box-shadow: var(--shadow); }

.home-pricing { padding: 50px 0 10px; text-align: center; }
.home-pricing p { max-width: 820px; margin: 0 auto 1em; }
.home-pricing-ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 10px; }

/* SEO tag cloud (home + CMS pages) */
.tags-band { padding: 44px 0 10px; }
.tags-lead { font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tags a {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: .88rem;
    font-weight: 500;
    text-decoration: none;
}
.tags a:hover { background: var(--bg-yellow-soft); border-color: var(--yellow); }

@media (max-width: 1023px) {
    .prod-grid, .tech-grid, .design-grid { grid-template-columns: repeat(2, 1fr); }
    .tiktok-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
    /* slider: stack like the old site — image on top, centered text below */
    .hs-in { grid-template-columns: 1fr; gap: 18px; text-align: center; padding-top: 28px; padding-bottom: 68px; }
    .hs-img { order: -1; }
    .hs-img img { max-height: 300px; width: auto; }
    .hs-img .video-facade { max-width: min(420px, 100%); }
    .hs-img .video-facade img { width: 100%; max-height: none; }
    .hs-txt > p { margin-inline: auto; }
    /* display:table shrink-wraps AND stays block-level, so the CTA lands on
       its own centered line below the left-aligned list */
    .hs-txt .check-list { display: table; margin: 0 auto 18px; text-align: left; }
    .hs-arrow { display: none; }
    .home-band-in, .home-dpd-in { grid-template-columns: 1fr; }
    .tiktok-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 560px) {
    .prod-grid, .tech-grid, .design-grid { grid-template-columns: 1fr; }
}

/* ============ home sections — live-faithful rebuild (hp-*) ============ */

/* Print i tisak na: naziv → navy ikona → žuti gumb */
.hp-center-title { text-align: center; margin: 0 0 30px; }
.hp-products { padding: 54px 0 26px; }
.hp-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.hp-product { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.hp-product h3 { font-size: 1.75rem; margin: 0; }
.hp-product img { width: min(190px, 62%); height: auto; }

/* tehnike: žuta intro kartica + 2×2 kartice sa naslovom "u okviru" */
.hp-tech { padding: 44px 0 26px; }
.hp-tech-grid { display: grid; grid-template-columns: 1fr 2.05fr; gap: 34px; align-items: stretch; }
.hp-tech-intro {
    background: var(--yellow);
    border-radius: 18px;
    padding: 42px 34px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hp-tech-intro h2 { font-size: 2rem; margin: 0 0 .35em; }
.hp-tech-sub { font-size: 1.5rem; font-weight: 700; color: var(--navy); line-height: 1.3; margin: 0 0 1em; }
.hp-tech-intro .btn { margin-top: auto; }
.hp-tech-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 46px 30px; padding-top: 16px; }
.hp-tech-card {
    position: relative;
    background: #fff;
    border: 2px solid var(--yellow);
    border-radius: 16px;
    padding: 42px 26px 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
/* naslov "presijeca" žuti okvir kao legenda */
.hp-tech-card h3 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -55%);
    background: #fff;
    padding: 0 16px;
    margin: 0;
    font-size: 1.55rem;
    white-space: nowrap;
}
.hp-tech-card img { width: 105px; height: 105px; }
.hp-tech-card p { margin: 0; }
.hp-tech-card .btn { margin-top: auto; }

/* dizajniraj online: foto + valoviti žuti donji dio */
.hp-design { padding: 34px 0 20px; }
.hp-design-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.hp-design-card {
    display: flex;
    flex-direction: column;
    background: var(--yellow);
    box-shadow: 0 12px 34px rgba(0, 30, 80, .14);
    overflow: hidden;
}
.hp-design-photo img { display: block; width: 100%; height: auto; }
.hp-design-wave { display: block; width: 100%; height: 40px; margin-top: -39px; position: relative; }
.hp-design-body {
    padding: 2px 20px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.hp-design-body h3 { margin: 0; font-size: 1.35rem; }
.hp-design-sub { font-weight: 600; font-size: .92rem; margin: 0; color: var(--navy); }
.hp-design-body p { margin: 0; color: var(--navy); }
.hp-design-body .btn { margin-top: auto; align-self: center; }

/* video: žuta kartica s pozivom + click-to-play video */
.hp-video { padding: 44px 0; }
.hp-video-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: center; }
.hp-video-card {
    background: var(--yellow);
    border-radius: 18px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.hp-video-card h2 { margin: 0; font-size: 1.75rem; }
.hp-video-card p { margin: 0; color: var(--navy); }
.hp-video-player .video-facade { display: block; width: 100%; border-radius: 0; }
.hp-video-player .video-facade img { width: 100%; }

/* Norijada.com band (žuta pruga, svjetlija nijansa) */
.hp-norijada { background: #FFDE03; margin-top: 30px; padding: 46px 0; }
.hp-norijada-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: center; }
.hp-norijada-phones { display: block; text-align: center; color: var(--navy); text-decoration: none; font-weight: 500; }
.hp-norijada-phones img { width: min(400px, 88%); height: auto; }
.hp-norijada-phones span { display: block; max-width: 430px; margin: 8px auto 0; }
.hp-norijada-brand { text-align: center; }
.hp-norijada-brand img { width: min(620px, 100%); height: auto; }
.hp-norijada-brand h2 { font-size: 2.1rem; margin: 18px 0 0; }
.hp-band-cta { text-align: center; margin: 36px 0 0; }

/* DTFPrint.hr band (bijela pruga) */
.hp-dtf { padding: 60px 0 44px; }
.hp-dtf-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: center; }
.hp-dtf-img img { width: min(320px, 100%); height: auto; display: block; margin: 0 auto; }
.hp-dtf-brand { text-align: center; }
.hp-dtf-brand img { width: min(640px, 100%); height: auto; }
.hp-dtf-brand h2 { font-size: 2rem; margin: 14px 0 0; }

/* TikTok band */
.hp-tiktok { padding: 44px 0; text-align: center; }
.hp-tiktok-head { font-size: 2.2rem; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.hp-tiktok-logo img { height: 64px; width: auto; }
.hp-tiktok-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 32px; }
.hp-tiktok-card { display: block; color: var(--navy); text-align: left; text-decoration: none; }
.hp-tiktok-card img { width: 100%; height: auto; display: block; }
.hp-tiktok-card p { margin: 12px 0 0; font-weight: 600; text-decoration: underline; line-height: 1.55; }

/* DPD dostava */
.hp-dpd { padding: 44px 0; }
.hp-dpd-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: center; }
.hp-dpd-txt { text-align: center; }
.hp-dpd-txt img { width: 200px; height: auto; }
.hp-dpd-txt h2 { font-size: 1.9rem; margin: 16px 0 0; }
.hp-dpd-photo { width: 100%; height: auto; display: block; }

/* cijena tiska */
.hp-pricing { padding: 26px 0 50px; }
.hp-pricing-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 40px; align-items: center; }
.hp-pricing-txt h2 { margin: 0 0 .7em; }
.hp-pricing-txt p:last-child { margin-bottom: 0; }
.hp-pricing-cta { margin: 0; text-align: center; }

/* oznake (žuta pruga) */
.hp-tags { background: var(--yellow); padding: 26px 0 32px; text-align: center; }
.hp-tags-lead { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--navy); margin: 0 0 10px; }
.hp-tags-lead .ico { width: 18px; height: 18px; }
.hp-tags-row { display: flex; justify-content: center; align-items: baseline; gap: 16px 48px; flex-wrap: wrap; }
.hp-tags-row a, .hp-tags-row span { font-size: 1.55rem; font-weight: 700; color: var(--navy); text-decoration: none; }
.hp-tags-row a:hover { text-decoration: underline; }

@media (max-width: 1023px) {
    .hp-products-grid, .hp-design-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-tech-grid { grid-template-columns: 1fr; }
    .hp-tech-cards { padding-top: 24px; }
}
@media (max-width: 860px) {
    .hp-video-grid, .hp-norijada-grid, .hp-dtf-grid, .hp-dpd-grid, .hp-pricing-grid { grid-template-columns: 1fr; }
    .hp-tiktok-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
    .hp-tech-cards { grid-template-columns: 1fr; gap: 40px; }
    .hp-norijada-brand h2, .hp-dtf-brand h2, .hp-dpd-txt h2 { font-size: 1.65rem; }
    .hp-tags-row a, .hp-tags-row span { font-size: 1.3rem; }
    .hp-pricing-cta { text-align: center; }
}
@media (max-width: 640px) {
    /* proizvodi ostaju u 2 stupca i na mobitelu */
    .hp-products-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 14px; }
    .hp-product h3 { font-size: 1.3rem; }
    .hp-product img { width: min(150px, 78%); }
    .hp-design-grid { grid-template-columns: 1fr; }
}

/* ====================== CMS pages (.prose + components) =================== */

.pg-wrap { padding: 44px 0 20px; }
.prose h1 { margin-bottom: .5em; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin: .3em 0; }
.prose img { border-radius: 10px; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.2em 0; }

/* page hero: icon + h1 + intro (+ .check-list), used by the tisak-* pages */
.pg-hero {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 30px;
    align-items: center;
    background: var(--bg-yellow-soft);
    border: 1px solid #f3e29b;
    border-radius: var(--radius);
    padding: 30px 34px;
    margin-bottom: 34px;
}
/* contain, ne rastezati — hero ikone nisu sve kvadratne (bodi PNG je 300×243) */
.pg-hero > img { width: 120px; height: 120px; object-fit: contain; }
.pg-hero h1 { margin-bottom: .3em; }
.pg-hero p:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
    .pg-hero { grid-template-columns: 1fr; text-align: center; }
    .pg-hero > img { margin: 0 auto; }
}

/* two-column feature checklist inside heroes/pages */
.check-cols { columns: 2; column-gap: 30px; }
@media (max-width: 640px) { .check-cols { columns: 1; } }

/* product model cards (tisak-na-majice/hudice/djecje/torbe) */
.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 24px 0 34px; }
@media (max-width: 900px) { .model-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .model-grid { grid-template-columns: 1fr; } }
.model-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.model-card > img:first-child { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 0; }
.model-body { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 20px; }
.model-body h3 { margin: 0 0 4px; font-size: 1.1rem; }
.model-brand { height: 22px; width: auto; align-self: flex-start; margin: 4px 0 10px; border-radius: 0 !important; }
.model-code { font-size: .82rem; font-weight: 600; color: #6b7280; margin: 0 0 8px; }
.model-desc { font-size: .92rem; margin: 0 0 14px; }
.model-size { margin: 0 0 14px; }
.model-size img { width: 100%; height: auto; }
.model-price { margin-top: auto; padding-top: 8px; }
.model-price b { display: block; font-size: 1.5rem; color: var(--navy); }
.model-price small { color: #6b7280; }
.model-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.model-ctas .btn { padding: 9px 18px; font-size: .9rem; }

/* live colour swatches on the configurator-fed model cards */
.model-colors { display: flex; align-items: center; gap: 7px; margin: 4px 0 2px; }
.model-dot {
    width: 18px; height: 18px; border-radius: 50%;
    border: 1px solid rgba(0, 30, 80, .22);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .35);
    flex: none;
}
.model-colors-more { font-size: .82rem; font-weight: 600; color: #6b7280; white-space: nowrap; }
.model-grid--live .model-card > img { background: #fff; }
.model-grid--live .model-desc {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* photo gallery (tisak-na-majice examples, natpisi ideas) */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0 34px; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
/* phones keep 2 columns (tighter gap) instead of collapsing to one */
@media (max-width: 540px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.gallery figure { margin: 0; }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; display: block; }
.gallery--shirts img { aspect-ratio: 1; object-fit: cover; }
.gallery figcaption { font-size: .8rem; color: #6b7280; padding: 6px 2px 0; }

/* CTA band inside CMS content (price enquiry) */
.cta-band {
    background: var(--yellow);
    border-radius: var(--radius);
    padding: 30px 34px;
    margin: 34px 0;
    text-align: center;
}
.cta-band h2, .cta-band h3 { margin-top: 0; }
.cta-band p { max-width: 800px; margin: 0 auto 1em; }
.cta-band .btn { margin: 4px 6px 0; }

/* informational notice (e.g. bodi "coming soon") */
.notice {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--bg-yellow-soft);
    border: 1px solid #f3e29b;
    border-radius: var(--radius);
    padding: 18px 22px;
    margin: 0 0 26px;
    color: var(--navy);
    font-weight: 500;
}
.notice .ico { width: 22px; height: 22px; margin-top: 3px; }
.notice p { margin: 0; }

/* FAQ (details/summary) */
.faq { margin: 20px 0 30px; }
.faq details { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; background: #fff; }
.faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--navy);
    padding: 14px 18px;
    list-style: none;
    position: relative;
    padding-right: 40px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--navy);
}
.faq details[open] summary::after { content: '–'; }
.faq details > div { padding: 0 18px 14px; }
.faq details > div > :last-child { margin-bottom: 0; }

/* testimonials */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 24px 0 34px; }
@media (max-width: 860px) { .quote-grid { grid-template-columns: 1fr; } }
.quote-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 22px;
}
.quote-card img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; margin-bottom: 10px; }
.quote-card p { font-size: .95rem; margin: 0 0 8px; }
.quote-by { font-weight: 700; color: var(--navy); font-size: .9rem; margin: 0 !important; }

/* stats (o-nama) */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0; text-align: center; }
/* breathing room when the numbers follow a split section (o-nama intro) */
.split + .stat-grid { margin-top: 56px; }
@media (max-width: 640px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-card { background: var(--yellow); border-radius: var(--radius); padding: 26px 18px; }
.stat-card b { display: block; font-size: 2.6rem; color: var(--navy); line-height: 1.1; font-variant-numeric: tabular-nums; }
.stat-card span { color: var(--navy); font-weight: 600; }
.stat-card small { display: block; color: #6d5b00; margin-top: 2px; }

/* generic split section inside CMS content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; margin: 26px 0; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius); }
/* 25 % smaller image variant (o-nama bijela majica) */
.split img.split-img-sm { width: 75%; justify-self: center; }

/* company info card (o-nama) */
.info-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin: 20px 0;
}
.info-card h3 { margin-top: 0; }
.info-card dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; margin: 0; }
.info-card dt { font-weight: 600; color: var(--navy); }
.info-card dd { margin: 0; }

/* map embed */
.map-embed, .ct-map { margin: 30px 0 10px; }
.map-embed iframe, .ct-map iframe {
    width: 100%;
    height: 380px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: block;
}

/* price tiers (dtf-preslikaci) */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 24px 0; text-align: center; }
@media (max-width: 640px) { .tier-grid { grid-template-columns: 1fr; } }
.tier-card { border: 2px solid var(--navy); border-radius: var(--radius); padding: 22px 18px; }
.tier-card b { display: block; font-size: 2rem; color: var(--navy); }
.tier-card span { font-weight: 600; }

/* steps row (dtf-preslikaci: upload → cut → press) */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 24px 0; text-align: center; }
@media (max-width: 640px) { .steps-grid { grid-template-columns: 1fr; } }
.steps-grid img { width: 110px; height: 110px; }
.steps-grid p { font-weight: 600; color: var(--navy); margin: 8px 0 0; }

/* ============================ contact page ================================ */

.ct-page .ct-intro { margin-bottom: 30px; }
.ct-designer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
    background: var(--yellow);
    border-radius: var(--radius);
    padding: 30px 36px;
    margin-bottom: 40px;
}
.ct-designer img { border-radius: 10px; }
.ct-designer-txt h2 { margin-bottom: .4em; }
/* CTA matches the homepage slider's first slide: navy on the light card */
.ct-designer .btn-cta { background: var(--navy); color: #fff; box-shadow: 0 4px 14px rgba(0, 30, 80, .28); }
.ct-designer .btn-cta:hover { background: #0a3a8c; color: #fff; }
@media (max-width: 860px) {
    .ct-designer { grid-template-columns: 1fr; }
}

.ct-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 26px; align-items: start; }
@media (max-width: 860px) { .ct-grid { grid-template-columns: 1fr; } }
.ct-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-bottom: 16px;
}
.ct-card h2, .ct-card h3 { display: flex; align-items: center; gap: 10px; margin-top: 0; }
.ct-form-card form { display: flex; flex-direction: column; gap: 14px; }
.ct-form-card label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; color: var(--navy); font-size: .92rem; }
.ct-form-card input[type=text], .ct-form-card input[type=email], .ct-form-card textarea {
    font: 400 1rem var(--font);
    color: var(--ink);
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 11px 14px;
    background: #fff;
}
.ct-form-card input:focus, .ct-form-card textarea:focus { outline: 2px solid var(--yellow); border-color: var(--yellow); }
.ct-form-card input.err, .ct-form-card textarea.err { border-color: #ef4444; }
.ct-form-card textarea { resize: vertical; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .ct-row { grid-template-columns: 1fr; } }
.ct-hp { position: absolute; left: -9999px; top: -9999px; }
.ct-file-label { display: block; font-weight: 600; margin-bottom: 8px; }
/* drag & drop upload box (up to 4 files × 50 MB) */
.ct-drop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    padding: 26px 18px;
    border: 2px dashed var(--navy);
    border-radius: 14px;
    background: var(--bg-soft);
    cursor: pointer;
    transition: background .15s, border-color .15s;
}
.ct-drop:hover, .ct-drop:focus-visible { background: var(--bg-yellow-soft); }
.ct-drop.drag { background: var(--bg-yellow-soft); border-color: var(--yellow); border-style: solid; }
.ct-drop .ico { width: 30px; height: 30px; color: var(--navy); margin-bottom: 4px; }
.ct-drop b { color: var(--navy); }
.ct-drop span { font-weight: 500; font-size: .92rem; }
.ct-drop small { font-weight: 400; color: #6b7280; margin-top: 4px; }
.ct-files { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 6px; }
.ct-files li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: .92rem;
}
.ct-files-name { flex: 1; font-weight: 600; color: var(--navy); overflow-wrap: anywhere; }
.ct-files-size { color: #6b7280; white-space: nowrap; }
.ct-files-rm {
    border: 0;
    background: none;
    color: #b91c1c;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 6px;
}
.ct-files-rm:hover { background: #fee2e2; }
.ct-captcha { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ct-captcha-q {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 16px;
    color: var(--navy);
}
.ct-captcha input { width: 110px; }
.ct-note { margin: 0; }
.ct-err {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: .92rem;
}
.ct-progress { display: grid; gap: 6px; }
.ct-progress-track {
    height: 10px;
    border-radius: 999px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    overflow: hidden;
}
.ct-progress-fill {
    height: 100%;
    width: 0;
    background: var(--navy);
    border-radius: inherit;
    transition: width .2s ease;
}
.ct-progress-txt { font-size: .88rem; font-weight: 500; color: var(--navy); }
.ct-progress.done .ct-progress-fill { animation: ctProgPulse 1.2s ease-in-out infinite; }
@keyframes ctProgPulse { 50% { opacity: .55; } }
.ct-submit { align-self: flex-start; }
.ct-done { text-align: center; padding: 30px 10px; }
.ct-done-ico .ico { width: 54px; height: 54px; color: var(--navy); }
.ct-chat-links { display: flex; gap: 10px; flex-wrap: wrap; }
.ct-chat-links .btn { padding: 9px 18px; font-size: .9rem; }
/* wide client-testimonial card (live style: photo | label + quote + stars) */
.ct-testimonial {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 46px;
    align-items: center;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 16px 44px rgba(0, 30, 80, .10);
    padding: 40px;
    margin: 44px 0 14px;
}
.ct-testimonial-img { width: 100%; height: auto; border-radius: 12px; }
.ct-testimonial-label {
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: .85rem;
    color: var(--navy);
    margin: 0 0 14px;
}
.ct-testimonial-quote { margin: 0; position: relative; }
.ct-testimonial-quote::before,
.ct-testimonial-quote::after {
    position: absolute;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 4.6rem;
    line-height: 1;
    color: #D8DDE4;
}
.ct-testimonial-quote::before { content: '\201C'; top: -26px; left: -14px; }
.ct-testimonial-quote::after { content: '\201D'; bottom: -34px; right: 0; }
.ct-testimonial-quote p {
    position: relative;
    font-size: 1.35rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--navy);
    margin: 0;
    padding-left: 10px;
}
.ct-testimonial-stars { display: flex; gap: 6px; color: var(--yellow); margin: 18px 0 14px; }
.ct-testimonial-stars .star { width: 27px; height: 27px; }
.ct-testimonial-by { font-weight: 800; color: var(--navy); margin: 0; letter-spacing: .02em; }
@media (max-width: 860px) {
    .ct-testimonial { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
    .ct-testimonial-quote p { font-size: 1.15rem; }
}

/* ============================ 404 ========================================= */
.nf-wrap { text-align: center; padding: 60px 20px; }
.nf-code { font-size: 5rem; font-weight: 800; color: var(--yellow); margin: 0; line-height: 1; }
.nf-ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
