:root {
    --k: #0B0F14;
    --c: #00AEEF;
    --m: #EC008C;
    --y: #FFD400;
    --paper: #F8FAFC;
    --ink: #111827;
    --muted: rgba(17, 24, 39, 0.68);
    --line: rgba(11, 15, 20, 0.10);
    --radius: 18px;
    --radius-lg: 26px;
    --shadow: 0 18px 50px rgba(11, 15, 20, 0.12);
    --shadow-soft: 0 12px 30px rgba(11, 15, 20, 0.08);
}

body {
    scroll-behavior: smooth;
    background-color: var(--paper);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 24%, rgba(0, 174, 239, 0.08), transparent 52%),
        radial-gradient(circle at 78% 18%, rgba(236, 0, 140, 0.06), transparent 52%),
        radial-gradient(circle at 70% 80%, rgba(255, 212, 0, 0.05), transparent 55%),
        radial-gradient(rgba(11, 15, 20, 0.06) 1px, transparent 0);
    background-size: auto, auto, auto, 22px 22px;
    background-position: center, center, center, 0 0;
    opacity: 1;
    z-index: -1;
}

/* Layout helpers */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .site-container { padding: 0 28px; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 1;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
    user-select: none;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    position: relative;
    color: #0B0F14;
    background-image: linear-gradient(105deg,
            rgba(0, 174, 239, 1) 0%,
            rgba(0, 174, 239, 1) 18%,
            rgba(236, 0, 140, 1) 56%,
            rgba(255, 212, 0, 1) 100%);
    background-size: 180% 180%;
    background-position: 0% 50%;
    border-color: rgba(11, 15, 20, 0.10);
    box-shadow: 0 16px 40px rgba(0, 174, 239, 0.16), 0 10px 18px rgba(11, 15, 20, 0.10);
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.18) 38%, transparent 62%);
    transform: translateX(-55%);
    transition: transform .5s ease;
    opacity: 0.9;
}

.btn-primary:hover {
    background-position: 100% 50%;
    box-shadow: 0 26px 70px rgba(236, 0, 140, 0.22), 0 12px 22px rgba(11, 15, 20, 0.12);
}

.btn-primary:hover::before {
    transform: translateX(55%);
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.25), 0 0 0 6px rgba(236, 0, 140, 0.18), var(--shadow-soft);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.75);
    border-color: var(--line);
    color: var(--k);
    box-shadow: var(--shadow-soft);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.92); }

.btn-block { width: 100%; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(248, 250, 252, 0.65);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(11, 15, 20, 0.10);
}

.site-stripe {
    height: 4px;
    background: linear-gradient(90deg, var(--c), var(--m), var(--y), var(--k));
}

.anchor-target { scroll-margin-top: 140px; }

/* Service subnav (service detail pages) */
.service-subnav {
    position: sticky;
    top: 110px;
    z-index: 55;
    background: rgba(248, 250, 252, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(11, 15, 20, 0.10);
}

.service-subnav-inner {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.service-subnav-services,
.service-subnav-sections {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.service-subnav-services::-webkit-scrollbar,
.service-subnav-sections::-webkit-scrollbar { display: none; }

.service-pill {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(11, 15, 20, 0.10);
    background: rgba(255, 255, 255, 0.86);
    color: rgba(11, 15, 20, 0.78);
    font-weight: 950;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.service-pill:hover {
    transform: translateY(-1px);
    border-color: rgba(11, 15, 20, 0.18);
    box-shadow: var(--shadow-soft);
}

.service-pill.is-active {
    color: #fff;
    border-color: rgba(0, 0, 0, 0.08);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.88));
}

.service-anchor {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(11, 15, 20, 0.10);
    background: rgba(255, 255, 255, 0.72);
    color: rgba(11, 15, 20, 0.72);
    font-weight: 850;
    font-size: 11px;
    letter-spacing: 0.04em;
}

.service-anchor:hover {
    color: var(--k);
    border-color: rgba(11, 15, 20, 0.18);
    background: rgba(255, 255, 255, 0.90);
}

.section-quote .quote-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
}

.quote-kicker {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-weight: 950;
    color: rgba(17, 24, 39, 0.55);
}

.quote-title {
    margin-top: 10px;
    font-family: "Playfair Display", serif;
    color: var(--k);
    font-size: 1.9rem;
    line-height: 1.12;
    font-weight: 750;
}

.quote-lead {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 560;
}

.quote-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

@media (max-width: 900px) {
    .service-subnav-inner { flex-direction: column; align-items: flex-start; }
    .service-subnav-sections { width: 100%; }
    .section-quote .quote-panel { flex-direction: column; align-items: flex-start; }
    .quote-actions { justify-content: flex-start; }
}

.site-topbar {
    border-bottom: 1px solid rgba(11, 15, 20, 0.06);
    background: rgba(255, 255, 255, 0.55);
}

.site-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
}

.site-topbar-left,
.site-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.site-topbar-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(11, 15, 20, 0.10);
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.85);
}

.site-topbar-muted {
    color: rgba(17, 24, 39, 0.62);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.02em;
}

.site-topbar-dot { opacity: 0.35; }

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

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--k);
}

.site-brand-mark { width: 38px; height: 38px; }
.site-brand-name {
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: 16px;
    line-height: 1;
}

.site-links { display: none; align-items: center; gap: 18px; }
.site-link {
    position: relative;
    text-decoration: none;
    color: rgba(11, 15, 20, 0.72);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 10px 10px;
    border-radius: 999px;
    transition: background-color .2s ease, color .2s ease;
}

.site-link:hover { background: rgba(11, 15, 20, 0.06); color: var(--k); }
.site-link.is-active { background: rgba(0, 174, 239, 0.10); color: var(--k); }

.site-dropdown { position: relative; display: inline-flex; align-items: center; }
.site-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}
.site-dropdown-trigger { display: inline-flex; align-items: center; gap: 6px; }
.site-dropdown-chevron { transition: transform .18s ease; opacity: 0.75; }

.site-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 420px;
    max-width: 520px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(11, 15, 20, 0.10);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    display: none;
    z-index: 80;
}

.site-dropdown:hover .site-dropdown-menu,
.site-dropdown:focus-within .site-dropdown-menu { display: block; }

.site-dropdown:hover .site-dropdown-chevron,
.site-dropdown:focus-within .site-dropdown-chevron { transform: rotate(180deg); }

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

.site-dropdown-item {
    text-decoration: none;
    border-radius: 14px;
    border: 1px solid rgba(11, 15, 20, 0.08);
    background: rgba(255, 255, 255, 0.86);
    padding: 12px 12px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.site-dropdown-item:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 174, 239, 0.28);
    box-shadow: var(--shadow-soft);
}

.site-dropdown-name {
    display: block;
    font-weight: 900;
    color: rgba(11, 15, 20, 0.90);
    letter-spacing: -0.01em;
    font-size: 13px;
    line-height: 1.2;
}

.site-dropdown-desc {
    display: block;
    margin-top: 6px;
    color: rgba(11, 15, 20, 0.56);
    font-weight: 650;
    font-size: 12px;
    line-height: 1.35;
}

.site-dropdown-footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(11, 15, 20, 0.08);
    display: flex;
    justify-content: flex-end;
}

.site-dropdown-all {
    text-decoration: none;
    font-weight: 950;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 174, 239, 0.14), rgba(236, 0, 140, 0.10));
    border: 1px solid rgba(11, 15, 20, 0.10);
    color: rgba(11, 15, 20, 0.82);
}
.site-dropdown-all:hover { background: linear-gradient(90deg, rgba(0, 174, 239, 0.22), rgba(236, 0, 140, 0.16)); }

.site-actions { display: inline-flex; align-items: center; gap: 10px; }
.site-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(11, 15, 20, 0.10);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-soft);
    color: var(--k);
}

.site-mobile {
    border-top: 1px solid rgba(11, 15, 20, 0.08);
    background: rgba(248, 250, 252, 0.88);
    backdrop-filter: blur(14px);
}

.site-mobile-card {
    padding: 14px 0 18px;
    display: grid;
    gap: 10px;
}

.site-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px;
    border-radius: var(--radius);
    border: 1px solid rgba(11, 15, 20, 0.08);
    background: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    color: var(--k);
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 12px;
}

.site-mobile-link.is-active { border-color: rgba(0, 174, 239, 0.35); }

.site-mobile-details { border-radius: var(--radius); }
.site-mobile-details[open] .site-mobile-details-icon { transform: rotate(180deg); }
.site-mobile-details summary { list-style: none; cursor: pointer; }
.site-mobile-details summary::-webkit-details-marker { display: none; }
.site-mobile-details-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    border-radius: 999px;
    border: 1px solid rgba(11, 15, 20, 0.12);
    background: rgba(255, 255, 255, 0.60);
    position: relative;
    transition: transform .18s ease;
}
.site-mobile-details-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(11, 15, 20, 0.70);
    border-bottom: 2px solid rgba(11, 15, 20, 0.70);
    transform: rotate(45deg);
    top: 3px;
}

.site-mobile-sub {
    margin-top: 10px;
    display: grid;
    gap: 10px;
    padding-left: 6px;
}

.site-mobile-sublink {
    text-decoration: none;
    border-radius: 16px;
    border: 1px solid rgba(11, 15, 20, 0.08);
    background: rgba(255, 255, 255, 0.82);
    padding: 12px 12px;
}
.site-mobile-sublink-title {
    display: block;
    color: rgba(11, 15, 20, 0.86);
    font-weight: 950;
    font-size: 12px;
    letter-spacing: 0.04em;
}
.site-mobile-sublink-desc {
    display: block;
    margin-top: 4px;
    color: rgba(11, 15, 20, 0.58);
    font-weight: 650;
    font-size: 12px;
    line-height: 1.35;
}
.site-mobile-sublink-all {
    border-color: rgba(0, 174, 239, 0.22);
    background: linear-gradient(90deg, rgba(0, 174, 239, 0.10), rgba(236, 0, 140, 0.08));
}

@media (min-width: 900px) {
    .site-links { display: inline-flex; }
    .site-menu-btn { display: none; }
}

/* Footer (keeps existing markup, new skin) */
.site-footer {
    position: relative;
    overflow: hidden;
    padding: 84px 0 44px;
    background: linear-gradient(180deg, rgba(11, 15, 20, 0.98) 0%, rgba(11, 15, 20, 1) 100%);
    color: rgba(255, 255, 255, 0.86);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 30%, rgba(0, 174, 239, 0.20), transparent 55%),
        radial-gradient(circle at 82% 22%, rgba(236, 0, 140, 0.20), transparent 58%),
        radial-gradient(circle at 74% 80%, rgba(255, 212, 0, 0.14), transparent 60%),
        radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: auto, auto, auto, 10px 10px;
    opacity: 0.55;
}

.site-footer .site-footer-inner {
    position: relative;
    z-index: 1;
}

.site-footer a { color: rgba(255, 255, 255, 0.80); }
.site-footer a:hover { color: rgba(0, 174, 239, 1); }

.site-footer .border-white\\/10 { border-color: rgba(255, 255, 255, 0.10) !important; }
.site-footer .border-white\\/5 { border-color: rgba(255, 255, 255, 0.06) !important; }

/* Footer layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 28px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo img {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 8px;
    object-fit: contain;
}

.footer-logo span {
    font-weight: 950;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.94);
    font-size: 1.15rem;
    line-height: 1.1;
}

.footer-desc {
    margin-top: 14px;
    max-width: 46ch;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
    font-weight: 560;
}

.footer-cta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-badges {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 850;
    color: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.footer-title {
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.86);
    margin-top: 6px;
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 650;
}

.footer-meta {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta:last-of-type { border-bottom: 0; }

.footer-meta-k {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 950;
    color: rgba(255, 255, 255, 0.55);
}

.footer-meta-v {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 600;
    display: grid;
    gap: 6px;
}

.footer-directions {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    font-size: 11px;
    font-weight: 850;
    text-decoration: none;
}

.footer-social {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social a {
    text-decoration: none;
    font-size: 11px;
    font-weight: 850;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.70);
    letter-spacing: 0.06em;
}

.footer-credit a {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
}

.footer-credit a:hover { color: rgba(255, 255, 255, 0.70); }

@media (max-width: 980px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-meta { grid-template-columns: 1fr; }
}

/* Hero */
.section-hero {
    position: relative;
    padding: 76px 0 54px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .section-hero { padding: 96px 0 70px; }
}

.section-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 24%, rgba(0, 174, 239, 0.14), transparent 52%),
        radial-gradient(circle at 82% 18%, rgba(236, 0, 140, 0.12), transparent 52%),
        radial-gradient(circle at 74% 80%, rgba(255, 212, 0, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62));
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 28px;
    align-items: center;
}

@media (min-width: 960px) {
    .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 42px; }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(11, 15, 20, 0.10);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 10px;
    width: fit-content;
}

.hero-tag-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--c), var(--m), var(--y));
}

.hero-title {
    font-family: "Playfair Display", serif;
    color: var(--k);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.06;
    font-size: clamp(2.3rem, 5vw, 4.1rem);
    margin: 14px 0 14px;
}

.hero-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0 0 18px;
    max-width: 54ch;
    font-weight: 550;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-kpis {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

@media (min-width: 560px) {
    .hero-kpis { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.hero-kpi {
    border-radius: var(--radius);
    border: 1px solid rgba(11, 15, 20, 0.10);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
    padding: 12px 12px;
}

.hero-kpi b {
    display: block;
    color: var(--k);
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-size: 11px;
}

.hero-kpi span {
    display: block;
    color: rgba(17, 24, 39, 0.58);
    font-weight: 700;
    margin-top: 4px;
    font-size: 12px;
}

.hero-frame {
    border-radius: var(--radius-lg);
    padding: 12px;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.7), rgba(236, 0, 140, 0.55), rgba(255, 212, 0, 0.55));
    box-shadow: var(--shadow);
}

.hero-frame-inner {
    border-radius: calc(var(--radius-lg) - 6px);
    background: #fff;
    border: 1px solid rgba(11, 15, 20, 0.08);
    overflow: hidden;
}

.hero-frame-inner img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

@media (min-width: 960px) {
    .hero-frame-inner img { height: 440px; }
}

/* Service cards */
.section {
    padding: 70px 0;
}

@media (min-width: 768px) {
    .section { padding: 92px 0; }
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    color: var(--k);
    font-weight: 700;
    margin: 0;
}

.section-lead {
    margin-top: 12px;
    color: var(--muted);
    max-width: 70ch;
    line-height: 1.8;
    font-weight: 550;
}

.service-grid {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

@media (min-width: 640px) {
    .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}

@media (min-width: 1024px) {
    .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
}

.service-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(11, 15, 20, 0.10);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
    padding: 18px 18px;
    text-decoration: none;
    color: inherit;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 220px;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(0, 174, 239, 0.30);
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 10px;
    color: rgba(11, 15, 20, 0.68);
}

.service-badge i {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--c);
}

.service-card h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 900;
    color: var(--k);
}

.service-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 550;
}

.service-card .service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 10px;
    color: rgba(11, 15, 20, 0.70);
}

.service-card:hover .service-link { color: rgba(0, 174, 239, 1); }

/* Panels / FAQ */
.panel {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(11, 15, 20, 0.10);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
}

.faq-list {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.faq-item {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(11, 15, 20, 0.10);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
    padding: 16px 16px;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-weight: 900;
    color: var(--k);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-a { margin-top: 10px; color: var(--muted); line-height: 1.75; font-weight: 550; }
.faq-plus { color: rgba(0, 174, 239, 1); font-weight: 900; font-size: 18px; transition: transform .18s ease; }
details[open] .faq-plus { transform: rotate(45deg); }

/* Catalogue */
.catalogue-grid {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

@media (min-width: 960px) {
    .catalogue-grid { grid-template-columns: 1fr 0.9fr; gap: 18px; align-items: start; }
}

.catalogue-switcher {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(11, 15, 20, 0.10);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.catalogue-head {
    padding: 14px 14px 0;
}

.catalogue-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 14px 14px 0;
    border-top: 1px solid rgba(11, 15, 20, 0.08);
    background: rgba(248, 250, 252, 0.55);
}

.catalogue-tab {
    appearance: none;
    border: 1px solid rgba(11, 15, 20, 0.10);
    background: rgba(255, 255, 255, 0.92);
    color: rgba(11, 15, 20, 0.74);
    padding: 10px 12px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.catalogue-tab:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 174, 239, 0.28);
    box-shadow: 0 10px 24px rgba(11, 15, 20, 0.10);
}

.catalogue-tab[aria-selected="true"] {
    color: var(--k);
    border-color: rgba(0, 174, 239, 0.38);
    background: linear-gradient(90deg, rgba(0, 174, 239, 0.14), rgba(236, 0, 140, 0.10), rgba(255, 212, 0, 0.10));
}

.catalogue-body {
    padding: 14px 14px 18px;
}

.catalogue-panel {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(11, 15, 20, 0.10);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    padding: 14px 14px;
}

.catalogue-panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.catalogue-panel-title h3 {
    margin: 0;
    font-weight: 900;
    color: var(--k);
    letter-spacing: -0.01em;
    font-size: 1.05rem;
}

.catalogue-panel small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-weight: 900;
    color: rgba(17, 24, 39, 0.55);
}

.catalogue-items {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalogue-chip {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(11, 15, 20, 0.10);
    background: rgba(255, 255, 255, 0.92);
    color: rgba(11, 15, 20, 0.76);
    font-weight: 750;
    font-size: 12px;
}

.help-card {
    position: sticky;
    top: 110px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(11, 15, 20, 0.10);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
    padding: 18px 18px;
}

.help-kicker {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-weight: 900;
    color: rgba(17, 24, 39, 0.55);
}

.help-title {
    margin-top: 10px;
    font-family: "Playfair Display", serif;
    color: var(--k);
    font-size: 1.55rem;
    line-height: 1.15;
    font-weight: 700;
}

.help-text {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 550;
}

.help-list {
    margin-top: 12px;
    display: grid;
    gap: 8px;
    color: rgba(11, 15, 20, 0.76);
    font-weight: 650;
    line-height: 1.6;
}

.help-list b { color: var(--k); font-weight: 900; }

/* Products */
.product-grid {
    margin-top: 22px;
    display: grid;
    gap: 14px;
}

@media (min-width: 640px) {
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}

@media (min-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
}

.product-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(11, 15, 20, 0.10);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
}

.product-media {
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.16), rgba(236, 0, 140, 0.10), rgba(255, 212, 0, 0.10));
    border-bottom: 1px solid rgba(11, 15, 20, 0.08);
}

.product-media img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.product-placeholder {
    height: 190px;
    display: grid;
    place-items: center;
    padding: 18px;
}

.product-placeholder img {
    width: 64px;
    height: 64px;
    opacity: 0.85;
}

.product-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-title {
    margin: 0;
    font-weight: 900;
    color: var(--k);
    letter-spacing: -0.01em;
    font-size: 1.08rem;
    line-height: 1.2;
}

.product-desc {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 550;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-actions {
    margin-top: auto;
    padding-top: 6px;
}


/* Tailwind helper class used by navbar JS */
.shadow-premium {
    box-shadow: 0 20px 50px rgba(11, 15, 20, 0.12);
}

/* Glass Header */
.bg-glass {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8);
}

.nav-link {
    transition: color 0.3s;
}

.mobile-link {
    color: var(--k);
    font-size: 1.125rem;
    font-weight: 500;
}

.mobile-link:hover {
    color: var(--c);
}



/* Home Section */
.hero-home {
    background-image:
        linear-gradient(120deg, rgba(11, 15, 20, 0.92) 0%, rgba(0, 174, 239, 0.18) 55%, rgba(236, 0, 140, 0.16) 100%),
        url("https://a.storyblok.com/f/165154/1280x720/0a30e26489/01_digital-printing-overview.jpg");
    background-size: cover;
    background-position: center;
}

.hero-about {
    background-image:
        linear-gradient(120deg, rgba(11, 15, 20, 0.92) 0%, rgba(255, 212, 0, 0.14) 50%, rgba(0, 174, 239, 0.14) 100%),
        url("https://upload.wikimedia.org/wikipedia/commons/e/e7/DE-Zeitungsrollenoffsetdruck_by_Steschke.jpg");
    background-size: cover;
    background-position: center;
}

.hero-services {
    background-image:
        linear-gradient(120deg, rgba(11, 15, 20, 0.92) 0%, rgba(0, 174, 239, 0.18) 55%, rgba(236, 0, 140, 0.16) 100%),
        url("https://d91ztqmtx7u1k.cloudfront.net/ClientContent/Images/Medium/20230616070049-46df1673-5443-47ae-a7a2-037553f7694d.jpg");
    background-size: cover;
    background-position: center;
}

.hero-service-detail {
    background-image:
        linear-gradient(120deg, rgba(11, 15, 20, 0.92) 0%, rgba(0, 174, 239, 0.14) 55%, rgba(236, 0, 140, 0.14) 100%),
        var(--hero-service-image);
    background-size: cover;
    background-position: center;
}

.blog-content {
    max-width: 100%;
}

.article-hero {
    background: var(--k);
    color: #fff;
    padding: 120px 0 96px;
}

.article-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.article-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.article-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.article-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.8);
}

.article-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 14px;
}

.article-meta {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-meta-dot {
    opacity: 0.6;
}

.article-body {
    background: #ffffff;
    padding: 0 0 120px;
}

.article-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 16px;
}

.article-feature {
    margin-top: -56px;
    margin-bottom: 32px;
}

.article-feature img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(11, 15, 20, 0.18);
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.article-excerpt {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #1f2937;
    margin-bottom: 26px;
    font-weight: 500;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4b5563;
}

.article-content > * + * {
    margin-top: 1.6rem;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    font-family: "Playfair Display", serif;
    color: var(--k);
    line-height: 1.35;
    margin-top: 2.1rem;
}

.article-content h2 { font-size: 1.85rem; }
.article-content h3 { font-size: 1.45rem; }
.article-content h4 { font-size: 1.15rem; }

.article-content a {
    color: var(--c);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(0, 174, 239, 0.4);
    text-underline-offset: 4px;
}

.article-content ul,
.article-content ol {
    padding-left: 1.25rem;
}

.article-content li {
    margin: 0.45rem 0;
}

.article-content blockquote {
    border-left: 4px solid var(--m);
    padding: 0.75rem 1.25rem;
    background: #FFF7FB;
    color: var(--k);
    font-style: italic;
    border-radius: 12px;
}

.article-content img {
    border-radius: 16px;
    max-width: 100%;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.article-content th,
.article-content td {
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    text-align: left;
}

.article-content th {
    background: #f9fafb;
    color: var(--k);
}

.article-content pre {
    background: var(--k);
    color: #f9fafb;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    overflow-x: auto;
    font-size: 0.9rem;
}

.article-content code {
    background: #f3f4f6;
    color: var(--k);
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.article-content hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2.25rem 0;
}

@media (max-width: 768px) {
    .article-hero {
        padding: 96px 0 64px;
    }

    .article-meta {
        letter-spacing: 0.12em;
        font-size: 11px;
    }

    .article-excerpt {
        font-size: 1.05rem;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(0, 174, 239, 0.22), transparent 52%),
        radial-gradient(circle at 82% 18%, rgba(236, 0, 140, 0.22), transparent 55%),
        radial-gradient(circle at 75% 80%, rgba(255, 212, 0, 0.18), transparent 55%),
        radial-gradient(circle at 22% 85%, rgba(11, 15, 20, 0.12), transparent 58%);
    pointer-events: none;
}

.hero-sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, 0.08) 52%, transparent 74%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 0),
        radial-gradient(rgba(0, 174, 239, 0.08) 1px, transparent 0),
        radial-gradient(rgba(236, 0, 140, 0.08) 1px, transparent 0),
        radial-gradient(rgba(255, 212, 0, 0.06) 1px, transparent 0);
    background-size: 4px 4px, 6px 6px, 7px 7px, 9px 9px;
    background-position: 0 0, 2px 1px, 1px 3px, 4px 2px;
    opacity: 0.10;
    pointer-events: none;
}

.hero-panel {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(18px);
}

.hero-card {
    box-shadow: 0 30px 70px rgba(12, 52, 102, 0.25);
}

@media (max-width: 1024px) {
    .hero-home {
        background-position: right center;
    }

    .hero-about {
        background-position: right center;
    }

    .hero-services {
        background-position: right center;
    }

    .hero-service-detail {
        background-position: right center;
    }
}

/* Reveal animation */
/* Scroll reveal (single system; JS adds `visible` + `reveal-visible`) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-right {
    transform: translateX(-40px);
}

.reveal-scale {
    transform: scale(0.96);
}

.reveal.visible,
.reveal.reveal-visible,
.reveal-visible {
    opacity: 1;
    transform: none;
}


/* Services Page */
.feature-card {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem;
    background: #fff;
    border-radius: 2rem;
    border: 1px solid #f3f4f6;
    font-weight: 700;
    font-size: .9rem;
    transition: .4s;
}

.feature-card:hover {
    border-color: rgba(255, 212, 0, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.service-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4rem;
    border: 16px solid #fff;
    filter: grayscale(1) brightness(.75);
    transition: 2s;
}

.service-image:hover {
    filter: grayscale(0);
    transform: scale(1.08);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    padding: 1.5rem 3rem;
    background: var(--k);
    color: #fff;
    border-radius: 1.5rem;
    font-weight: 900;
    letter-spacing: .2em;
    font-size: .7rem;
    transition: .4s;
}

.service-cta:hover {
    background: var(--c);
    transform: translateY(-6px);
}


@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.animate-marquee {
    animation: marquee 60s linear infinite
}

/* Quill rich text rendering (legacy) */
.job-richtext .ql-align-center { text-align: center; }
.job-richtext .ql-align-right { text-align: right; }
.job-richtext .ql-align-justify { text-align: justify; }
.job-richtext .ql-size-small { font-size: 0.875em; }
.job-richtext .ql-size-large { font-size: 1.25em; }
.job-richtext .ql-size-huge { font-size: 1.5em; }
.job-richtext .ql-font-serif { font-family: "Playfair Display", serif; }
.job-richtext .ql-font-monospace { font-family: "Courier New", monospace; }
.job-richtext .ql-indent-1 { margin-left: 2rem; }
.job-richtext .ql-indent-2 { margin-left: 4rem; }
.job-richtext .ql-indent-3 { margin-left: 6rem; }
.job-richtext .ql-indent-4 { margin-left: 8rem; }
.job-richtext blockquote {
    border-left: 4px solid rgba(11, 15, 20, 0.2);
    padding-left: 1rem;
    color: #4b5563;
    font-style: italic;
}
.job-richtext p {
    margin: 0 0 1rem;
    line-height: 1.7;
}
.job-richtext h1,
.job-richtext h2,
.job-richtext h3,
.job-richtext h4 {
    color: var(--k);
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
}
.job-richtext h3 {
    font-size: 1.35rem;
}
.job-richtext ul,
.job-richtext ol {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
}
.job-richtext ul {
    list-style: disc;
}
.job-richtext ol {
    list-style: decimal;
}
.job-richtext li {
    margin: 0.35rem 0;
    line-height: 1.6;
}
