:root {
    --ink: #152026;
    --navy: #063b78;
    --navy-900: #071826;
    --blue: #0e69b8;
    --cyan: #19b7c6;
    --teal: #0c9a8d;
    --gold: #f4a62a;
    --cream: #f8faf7;
    --muted: #66737d;
    --line: #e3e9ee;
    --white: #ffffff;
    --shadow: 0 22px 55px rgba(7, 24, 38, .13);
    --radius: 8px;
    --container: min(1180px, calc(100vw - 36px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
}

.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    z-index: 999;
    pointer-events: none;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .16s cubic-bezier(.2, .8, .2, 1), opacity .1s ease;
}

body.is-leaving .page-transition {
    opacity: 1;
    transform: scaleX(1);
}

img,
svg {
    max-width: 100%;
}

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

:focus-visible {
    outline: 3px solid rgba(25, 183, 198, .38);
    outline-offset: 3px;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    padding: 92px 0;
    scroll-margin-top: 92px;
}

.section-tight {
    padding: 64px 0;
}

.section-muted {
    background: #eef5f3;
}

.section-dark {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 24, 38, .96), rgba(6, 59, 120, .92)),
        radial-gradient(circle at 82% 20%, rgba(25, 183, 198, .32), transparent 28%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 16px;
    color: inherit;
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.65rem, 6vw, 5.7rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0 0 18px;
    color: var(--muted);
}

.section-dark p,
.hero p,
.cta-band p {
    color: rgba(255, 255, 255, .76);
}

.section-dark .card {
    color: var(--ink);
}

.section-dark .card p {
    color: var(--muted);
}

.lead {
    font-size: 1.12rem;
    max-width: 760px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(7, 24, 38, .16);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--teal));
}

.btn-accent {
    color: #1e1604;
    background: linear-gradient(135deg, #ffbc42, var(--gold));
}

.btn-light {
    color: var(--navy-900);
    background: var(--white);
}

.btn-outline {
    color: var(--navy);
    border-color: rgba(6, 59, 120, .25);
    background: rgba(255, 255, 255, .65);
}

.btn-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, .34);
}

.btn-small {
    min-height: 40px;
    padding: 9px 15px;
    font-size: .92rem;
}

.icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 250, 247, .9);
    border-bottom: 1px solid rgba(21, 32, 38, .08);
    backdrop-filter: blur(18px);
    transition: box-shadow .22s ease, background .22s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 30px rgba(7, 24, 38, .08);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 170px;
}

.brand-logo {
    display: block;
    width: min(218px, 48vw);
    max-height: 54px;
    object-fit: contain;
}

.brand-fallback {
    display: grid;
    line-height: 1.05;
}

.brand-fallback small {
    color: var(--muted);
}

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

.site-nav a {
    border-radius: var(--radius);
    padding: 10px 12px;
    color: #23323b;
    font-weight: 750;
    font-size: .95rem;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--navy);
    background: rgba(14, 105, 184, .08);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(130deg, rgba(7, 24, 38, .96), rgba(6, 59, 120, .88)),
        url("../images/generated/premium-hero-brand-system.png") center/cover no-repeat;
}

.hero::after,
.parallax-grid::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .8), transparent 84%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    align-items: center;
    gap: 54px;
    min-height: calc(100vh - 76px);
    padding: 74px 0 88px;
}

.hero-copy {
    animation: riseIn .75s ease both;
}

.hero .micro {
    display: inline-flex;
    margin: 16px 0 22px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #dff9ff;
    background: rgba(255, 255, 255, .09);
    font-weight: 800;
}

.hero-actions,
.cta-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.trust-badges span,
.pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--navy-900);
    background: rgba(255, 255, 255, .86);
    font-size: .88rem;
    font-weight: 850;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.premium-hero-visual {
    display: grid;
    grid-template-rows: minmax(350px, 1fr) auto;
    gap: 12px;
    min-height: 520px;
}

.hero-image-stage {
    position: relative;
    overflow: hidden;
    min-height: 350px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: #071826;
    box-shadow: 0 34px 80px rgba(0, 0, 0, .28);
}

.hero-image-stage img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    opacity: .95;
}

.hero-image-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(7, 24, 38, .04), rgba(7, 24, 38, .16));
}

.hero-service-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hero-service-mini {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: center;
    min-height: 66px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 16px 34px rgba(7, 24, 38, .2);
    backdrop-filter: blur(18px);
}

.hero-service-mini .icon {
    width: 42px;
    height: 42px;
    padding: 9px;
    border-radius: 8px;
    color: var(--navy);
    background: #e8f7f7;
}

.hero-service-mini strong,
.hero-service-mini small {
    display: block;
    line-height: 1.24;
}

.hero-service-mini strong {
    font-size: .96rem;
}

.hero-service-mini small {
    color: var(--muted);
    font-size: .8rem;
    font-weight: 700;
}

.visual-board,
.visual-card {
    display: none;
}

.service-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.service-card-compact {
    overflow: hidden;
    padding: 0;
}

.service-media {
    overflow: hidden;
    background: #071826;
}

.service-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8.4;
    object-fit: cover;
    transition: transform .36s ease;
}

.service-card-compact:hover .service-media img {
    transform: scale(1.04);
}

.service-card-body {
    display: grid;
    gap: 12px;
    padding: 16px;
}

.service-card-body h3 {
    min-height: 2.35em;
    margin-bottom: 0;
    font-size: 1.04rem;
    line-height: 1.18;
}

.service-card-body p {
    display: -webkit-box;
    min-height: 3em;
    margin-bottom: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.service-card-body .btn {
    justify-self: start;
}

.service-list-mini {
    gap: 6px;
    margin: 0 0 16px;
}

.service-list-mini li {
    font-size: .78rem;
}

.why-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr);
    gap: 24px;
    align-items: start;
}

.why-accordion .accordion-item small {
    display: none;
}

.metrics-panel {
    position: sticky;
    top: 96px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(6, 59, 120, .12);
    border-radius: var(--radius);
    background: linear-gradient(135deg, #ffffff, #eef7f5);
    box-shadow: var(--shadow);
}

.metric-item {
    min-height: 128px;
    padding: 18px 12px;
    border: 1px solid rgba(6, 59, 120, .08);
    border-radius: var(--radius);
    text-align: center;
    background: rgba(255, 255, 255, .74);
}

.metric-item p {
    margin: 8px 0 0;
    font-size: .88rem;
    font-weight: 800;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(280px, .45fr);
    gap: 34px;
    align-items: end;
    margin-bottom: 38px;
}

.section-head.center {
    display: block;
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.grid {
    display: grid;
    gap: 22px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(7, 24, 38, .06);
}

.service-card,
.feature-card,
.client-card,
.process-step,
.stat-card,
.portfolio-card,
.contact-card {
    padding: 24px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover,
.portfolio-card:hover,
.feature-card:hover,
.client-card:hover {
    transform: translateY(-5px);
    border-color: rgba(25, 183, 198, .55);
    box-shadow: var(--shadow);
}

.service-icon,
.feature-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 8px;
    color: var(--navy);
    background: linear-gradient(135deg, #e6f4ff, #e9fbf3);
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 18px 0 22px;
    list-style: none;
}

.service-list li {
    padding: 6px 10px;
    border-radius: 999px;
    color: #35454f;
    background: #eef4f6;
    font-size: .86rem;
    font-weight: 720;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(320px, 1fr);
    align-items: center;
    gap: 48px;
}

.image-panel {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--white);
}

.premium-image-panel {
    background: #071826;
}

.image-panel img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-visual-panel {
    height: 100%;
    min-height: 520px;
}

.about-visual-panel img {
    height: 100%;
    min-height: 520px;
    aspect-ratio: auto;
}

.about-proof-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f1f7f5 100%),
        radial-gradient(circle at 12% 20%, rgba(25, 183, 198, .13), transparent 34%);
}

.about-proof-layout {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(340px, 1fr);
    gap: 38px;
    align-items: center;
}

.about-proof-layout > .reveal:first-child {
    padding: clamp(26px, 4vw, 42px);
    border-left: 4px solid var(--gold);
    background: rgba(255, 255, 255, .68);
}

.about-proof-grid {
    display: grid;
    gap: 14px;
}

.about-proof-grid article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 10px 14px;
    align-items: start;
    padding: 18px;
    border: 1px solid rgba(6, 59, 120, .1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 12px 28px rgba(7, 24, 38, .055);
}

.about-proof-grid article span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: var(--radius);
    color: var(--navy);
    background: linear-gradient(135deg, #e6f4ff, #e8f7f7);
}

.about-proof-grid article .icon {
    width: 25px;
    height: 25px;
}

.about-proof-grid strong {
    color: var(--navy-900);
    font-size: 1.05rem;
    line-height: 1.25;
}

.about-proof-grid p {
    grid-column: 2;
    margin: 0;
    font-size: .94rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    display: block;
    color: var(--navy);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}

.process-section {
    background:
        linear-gradient(135deg, rgba(7, 24, 38, .98), rgba(6, 59, 120, .94)),
        radial-gradient(circle at 88% 16%, rgba(244, 166, 42, .18), transparent 30%);
}

.process-board {
    display: grid;
    grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.process-board-intro {
    display: grid;
    align-content: center;
    padding: 28px;
    border-radius: var(--radius);
    background: linear-gradient(160deg, rgba(255, 255, 255, .13), rgba(25, 183, 198, .08));
}

.process-board-intro span {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.process-board-intro h3 {
    margin: 14px 0 12px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.process-board-intro p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .75);
}

.process-list {
    display: grid;
    gap: 12px;
}

.process-step {
    display: grid;
    grid-template-columns: 66px 118px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 112px;
    padding: 16px 18px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.process-step:hover {
    transform: translateX(4px);
    border-color: rgba(244, 166, 42, .45);
    background: rgba(255, 255, 255, .12);
}

.process-step .step-number {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    color: var(--navy);
    background: var(--white);
    font-weight: 950;
    letter-spacing: .03em;
}

.process-tag {
    justify-self: start;
    padding: 7px 10px;
    border: 1px solid rgba(244, 166, 42, .34);
    border-radius: 999px;
    color: #ffe7b3;
    background: rgba(244, 166, 42, .12);
    font-size: .78rem;
    font-weight: 900;
}

.process-step h3 {
    margin-bottom: 6px;
    font-size: 1.12rem;
}

.process-step p {
    max-width: 620px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .72);
    font-size: .94rem;
    line-height: 1.52;
}

.accordion-stack {
    display: grid;
    gap: 16px;
}

.accordion-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(7, 24, 38, .06);
}

.accordion-item summary {
    display: grid;
    grid-template-columns: 58px 1fr 38px;
    gap: 16px;
    align-items: center;
    min-height: 86px;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
}

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

.accordion-item summary::after {
    content: "+";
    grid-column: 3;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--navy);
    background: #e8f3ff;
    font-size: 1.35rem;
    font-weight: 900;
}

.accordion-item[open] summary::after {
    content: "-";
    background: #fff3da;
}

.accordion-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    color: var(--navy);
    background: linear-gradient(135deg, #e6f4ff, #e9fbf3);
}

.accordion-item strong {
    display: block;
    color: var(--ink);
    font-size: 1.16rem;
    line-height: 1.25;
}

.accordion-item small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.45;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    opacity: 0;
    will-change: max-height, opacity;
    transition: max-height .32s cubic-bezier(.22, .9, .2, 1), opacity .24s ease, padding .32s cubic-bezier(.22, .9, .2, 1);
}

.accordion-item[open] .accordion-panel {
    max-height: 900px;
    padding: 0 22px 24px;
    opacity: 1;
}

.accordion-item-soft .accordion-panel {
    max-height: 0;
}

.accordion-item-soft[open] .accordion-panel {
    max-height: 260px;
}

.accordion-split {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
    gap: 28px;
    align-items: start;
    padding-top: 4px;
}

.portfolio-card {
    overflow: hidden;
    padding: 0;
}

.portfolio-media {
    position: relative;
    overflow: hidden;
}

.portfolio-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    transition: transform .35s ease;
}

.portfolio-card:hover img {
    transform: scale(1.04);
}

.portfolio-body {
    padding: 20px;
}

.portfolio-tag {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--navy);
    background: #e8f3ff;
    font-size: .78rem;
    font-weight: 850;
}

.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.portfolio-filter button {
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid rgba(6, 59, 120, .18);
    border-radius: 999px;
    color: var(--navy);
    background: var(--white);
    font-weight: 850;
    cursor: pointer;
    transition: background .22s ease, color .22s ease, transform .22s ease;
}

.portfolio-filter button:hover,
.portfolio-filter button.is-active {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--teal));
    transform: translateY(-2px);
}

.portfolio-filter button:disabled {
    cursor: default;
    opacity: .58;
    transform: none;
}

.portfolio-filter button:disabled:hover {
    color: var(--navy);
    background: var(--white);
}

.portfolio-card.is-filtered-out {
    display: none;
}

.flash-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 999px;
    color: #1e1604;
    background: var(--gold);
    font-size: .76rem;
    font-weight: 900;
    animation: flashPulse 1.8s ease-in-out infinite;
}

.empty-state {
    max-width: 760px;
    margin: 0 auto;
    padding: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
    background: var(--white);
    box-shadow: var(--shadow);
}

.empty-state .feature-icon {
    margin-inline: auto;
}

.showcase-section {
    position: relative;
}

.showcase-head {
    max-width: 920px;
    margin: 0 auto 34px;
    text-align: center;
}

.showcase-head .eyebrow {
    justify-content: center;
}

.showcase-head p {
    max-width: 720px;
    margin-inline: auto;
    font-size: 1.04rem;
}

.showcase-head .hero-actions {
    justify-content: center;
    margin-top: 24px;
}

.showcase-grid {
    margin-top: 34px;
}

.showcase-preview {
    display: grid;
    grid-template-columns: minmax(320px, .86fr) minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(6, 59, 120, .12);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.showcase-visual {
    position: relative;
    min-height: 390px;
    background: #071826;
}

.showcase-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    opacity: .9;
}

.showcase-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: var(--white);
    background: rgba(7, 24, 38, .72);
    backdrop-filter: blur(14px);
    font-size: .86rem;
    font-weight: 850;
}

.showcase-badge .icon {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.showcase-preview-copy {
    display: grid;
    align-content: center;
    padding: clamp(28px, 5vw, 54px);
}

.showcase-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--navy);
    background: #e8f7f7;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.showcase-preview-copy h3 {
    max-width: 560px;
    font-size: clamp(1.45rem, 2.7vw, 2.35rem);
}

.showcase-preview-copy p {
    max-width: 620px;
}

.showcase-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 8px;
}

.showcase-category-list span {
    padding: 8px 10px;
    border: 1px solid rgba(6, 59, 120, .12);
    border-radius: 999px;
    color: #334651;
    background: #f4f8f7;
    font-size: .86rem;
    font-weight: 820;
}

.client-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.client-card {
    min-height: 112px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #253641;
    font-weight: 900;
}

.clientele-home-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f2f8f6 100%),
        radial-gradient(circle at 50% 20%, rgba(25, 183, 198, .1), transparent 36%);
}

.clientele-home-head {
    max-width: 900px;
    margin: 0 auto 32px;
    text-align: center;
}

.clientele-home-head .eyebrow {
    justify-content: center;
}

.clientele-home-head h2 {
    max-width: 820px;
    margin-inline: auto;
}

.clientele-home-head p {
    max-width: 680px;
    margin-inline: auto;
    font-size: 1.04rem;
}

.clientele-category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.clientele-category-pills span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border: 1px solid rgba(6, 59, 120, .12);
    border-radius: 999px;
    color: #334651;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 10px 24px rgba(7, 24, 38, .05);
    font-size: .88rem;
    font-weight: 820;
}

.clientele-category-pills strong {
    color: var(--navy);
}

.clientele-showcase {
    display: grid;
    gap: 22px;
    justify-items: center;
}

.client-summary-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.client-summary-card {
    padding: 18px;
    border: 1px solid rgba(6, 59, 120, .1);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #ffffff, #f4faf9);
    box-shadow: 0 10px 24px rgba(7, 24, 38, .05);
}

.client-summary-card strong {
    display: block;
    color: var(--navy);
    font-size: 1.45rem;
    line-height: 1;
}

.client-summary-card span {
    display: block;
    margin-top: 8px;
    color: #35454f;
    font-size: .86rem;
    font-weight: 850;
    line-height: 1.3;
}

.client-category {
    margin-top: 42px;
    margin-bottom: 16px;
    color: var(--navy);
}

.client-category-block {
    padding: 22px;
    margin-top: 26px;
    border: 1px solid rgba(6, 59, 120, .09);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 14px 34px rgba(7, 24, 38, .06);
}

.client-category-block .client-category {
    margin-top: 0;
}

.client-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(6, 59, 120, .1);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(247, 251, 250, .98)),
        radial-gradient(circle at 10% 0%, rgba(25, 183, 198, .12), transparent 28%);
    box-shadow: var(--shadow);
}

.client-slider::before,
.client-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 82px;
    pointer-events: none;
}

.client-slider::before {
    left: 0;
    background: linear-gradient(90deg, var(--white), transparent);
}

.client-slider::after {
    right: 0;
    background: linear-gradient(270deg, var(--white), transparent);
}

.client-track {
    display: flex;
    gap: 14px;
    width: max-content;
    padding: 18px;
    animation: clientSlide 42s linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.client-slider:hover .client-track {
    animation-play-state: paused;
}

.client-logo-card {
    display: grid;
    grid-template-columns: 50px 160px;
    align-items: center;
    gap: 12px;
    min-width: 260px;
    padding: 12px 14px;
    border: 1px solid rgba(6, 59, 120, .08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 10px 24px rgba(7, 24, 38, .05);
}

.client-admin-note {
    background: #eef5f3;
}

.client-admin-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(6, 59, 120, .1);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(245, 250, 249, .95)),
        radial-gradient(circle at 92% 0%, rgba(244, 166, 42, .16), transparent 34%);
    box-shadow: var(--shadow);
}

.client-admin-panel h2 {
    max-width: 760px;
}

.client-admin-panel p {
    max-width: 780px;
    margin-bottom: 0;
}

.client-logo-card img,
.client-logo-tile img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--white);
}

.client-logo-card span {
    color: #253641;
    font-weight: 850;
    line-height: 1.25;
}

.client-logo-card.no-logo {
    grid-template-columns: 1fr;
    min-width: 208px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #f7fbfa);
}

.client-logo-card.logo-missing {
    grid-template-columns: 1fr;
}

.portfolio-gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-top: 16px;
}

.portfolio-gallery-strip img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.client-logo-tile {
    gap: 12px;
    min-height: 132px;
    border-color: rgba(6, 59, 120, .08);
    background: linear-gradient(180deg, #ffffff, #fbfdfd);
}

.client-logo-tile img {
    width: 58px;
    height: 58px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 68px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 24, 38, .96), rgba(6, 59, 120, .9)),
        url("../images/placeholders/hero-print-digital.svg") center/cover fixed;
}

.page-hero p {
    max-width: 780px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .78);
    font-size: .92rem;
}

.form-card {
    padding: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 7px;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    font-weight: 800;
    color: #293840;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #cfd9df;
    border-radius: var(--radius);
    padding: 12px 14px;
    color: var(--ink);
    background: var(--white);
    font: inherit;
}

textarea {
    min-height: 138px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(25, 183, 198, .2);
    border-color: var(--teal);
}

.alert {
    padding: 14px 16px;
    border-radius: var(--radius);
    margin-bottom: 18px;
    border: 1px solid transparent;
}

.alert-success {
    color: #103f2d;
    background: #e6f7ee;
    border-color: #a8dfc1;
}

.alert-error {
    color: #6f1d1d;
    background: #fff0f0;
    border-color: #f0bbbb;
}

.contact-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-list li {
    margin-bottom: 10px;
}

.contact-list .icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: -4px;
}

.contact-method-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.contact-method {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 122px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(7, 24, 38, .06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.contact-method:hover {
    transform: translateY(-4px);
    border-color: rgba(25, 183, 198, .5);
    box-shadow: var(--shadow);
}

.contact-method .icon {
    width: 48px;
    height: 48px;
    padding: 12px;
    border-radius: var(--radius);
    color: var(--navy);
    background: linear-gradient(135deg, #e6f4ff, #e9fbf3);
}

.contact-method strong,
.contact-method small {
    display: block;
}

.contact-method small {
    color: var(--muted);
    line-height: 1.35;
}

.contact-split {
    align-items: start;
}

.contact-mini-grid {
    margin: 28px 0;
}

.map-placeholder {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    border-radius: var(--radius);
    background: url("../images/placeholders/map-placeholder.svg") center/cover no-repeat;
    box-shadow: var(--shadow);
}

.map-embed-shell {
    background:
        linear-gradient(135deg, rgba(232, 247, 247, .7), rgba(255, 255, 255, .44)),
        url("../images/placeholders/map-placeholder.svg") center/cover no-repeat;
}

.map-embed-shell iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: .9;
    filter: saturate(.95) contrast(.98);
}

.map-card {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 4px;
    max-width: 420px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .52);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 28px rgba(7, 24, 38, .14);
}

.map-card span {
    color: var(--muted);
}

.map-wide {
    min-height: 430px;
    margin-top: 38px;
}

.cta-band {
    position: relative;
    overflow: hidden;
    padding: 52px 0;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 24, 38, .96), rgba(6, 59, 120, .9)),
        url("../images/generated/print-to-digital-presence.png") center/cover no-repeat;
}

.cta-band-inner {
    display: block;
}

.cta-copy {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.cta-copy h2 {
    max-width: 820px;
    margin-inline: auto;
}

.cta-proof-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.cta-proof-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: rgba(255, 255, 255, .88);
    background: rgba(255, 255, 255, .08);
    font-size: .88rem;
    font-weight: 820;
}

.cta-proof-list .icon {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.cta-action-panel {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.cta-action-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 78px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    color: var(--white);
    background: rgba(255, 255, 255, .92);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.cta-action-card:hover {
    transform: translateY(-3px);
    border-color: rgba(244, 166, 42, .45);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

.cta-action-card .icon {
    width: 48px;
    height: 48px;
    padding: 12px;
    border-radius: var(--radius);
    color: var(--navy);
    background: #e8f7f7;
}

.cta-action-card strong,
.cta-action-card small {
    display: block;
}

.cta-action-card strong {
    color: var(--navy-900);
    line-height: 1.22;
}

.cta-action-card small {
    color: var(--muted);
    line-height: 1.35;
}

.cta-action-card.is-featured {
    background: linear-gradient(135deg, #fff6dc, #ffffff);
}

.site-footer {
    color: rgba(255, 255, 255, .78);
    background: #071826;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, .88fr);
    gap: 34px;
    padding: 62px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr .9fr;
    gap: 34px;
    padding: 28px 0 42px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo {
    width: min(220px, 62vw);
    max-height: 62px;
    object-fit: contain;
    margin-bottom: 18px;
}

.site-footer h3 {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(244, 166, 42, .28);
    color: var(--white);
    font-size: .92rem;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.site-footer h3 .icon {
    width: 30px;
    height: 30px;
    padding: 7px;
    border-radius: 8px;
    color: #1e1604;
    background: var(--gold);
}

.site-footer p,
.site-footer a,
.site-footer li {
    color: rgba(255, 255, 255, .72);
}

.site-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer li {
    margin-bottom: 9px;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-icon-list li {
    margin-bottom: 10px;
}

.footer-icon-list a,
.contact-list li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 8px;
    align-items: start;
}

.footer-icon-list .icon,
.contact-list .icon {
    width: 17px;
    height: 17px;
    margin-top: 3px;
    color: var(--gold);
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white) !important;
    font-weight: 850;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.footer-socials a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, .07);
}

.footer-socials a:hover {
    color: #1e1604;
    background: var(--gold);
}

.footer-contact-panel {
    display: grid;
    gap: 12px;
}

.footer-contact-panel a {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 72px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
}

.footer-contact-panel .icon {
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: var(--radius);
    color: var(--gold);
    background: rgba(244, 166, 42, .12);
}

.footer-contact-panel strong,
.footer-contact-panel span {
    display: block;
}

.footer-contact-panel strong {
    color: var(--white);
}

.footer-admin-strip {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 26px;
    padding: 16px;
    border: 1px solid rgba(244, 166, 42, .22);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(244, 166, 42, .12), rgba(255, 255, 255, .05));
}

.footer-admin-strip span,
.footer-admin-strip strong {
    display: block;
}

.footer-admin-strip span {
    color: rgba(255, 255, 255, .58);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-admin-strip strong {
    color: var(--white);
    font-size: 1.05rem;
}

.footer-admin-strip a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: var(--radius);
    color: #1e1604;
    background: var(--gold);
    font-weight: 900;
}

.footer-admin-strip a .icon {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .92rem;
}

.float-whatsapp,
.back-top {
    position: fixed;
    z-index: 60;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(7, 24, 38, .2);
}

.float-whatsapp {
    right: 20px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    color: var(--white);
    background: #18a85d;
}

.float-whatsapp .icon {
    width: 30px;
    height: 30px;
}

.back-top {
    right: 22px;
    bottom: 92px;
    width: 42px;
    height: 42px;
    color: var(--navy-900);
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

.back-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .48s ease, transform .48s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.admin-body {
    background: #f3f6f7;
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    color: var(--white);
    background: var(--navy-900);
    padding: 26px;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, .76);
    font-weight: 750;
}

.admin-sidebar a .icon {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.admin-sidebar a:hover,
.admin-sidebar a.is-active {
    color: var(--white);
    background: rgba(255, 255, 255, .12);
}

.admin-nav-label {
    display: block;
    margin: 22px 0 8px;
    color: rgba(255, 255, 255, .42);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-main {
    padding: 32px;
}

.admin-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 26px;
}

.table-wrap,
.admin-table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: #40515b;
    background: #f4f8fa;
    font-size: .86rem;
}

.admin-thumb {
    width: 76px;
    height: 54px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--line);
}

.editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    border: 1px solid #cfd9df;
    border-bottom: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    background: #f4f8fa;
}

.editor-toolbar button {
    min-height: 34px;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    font-weight: 850;
    cursor: pointer;
}

.rich-editor {
    min-height: 280px;
    padding: 18px;
    border: 1px solid #cfd9df;
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--white);
}

.rich-editor:focus {
    outline: 3px solid rgba(25, 183, 198, .2);
    border-color: var(--teal);
}

.admin-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, .32fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 22px;
    padding: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(235, 248, 247, .92)),
        radial-gradient(circle at 90% 0%, rgba(244, 166, 42, .14), transparent 30%);
}

.admin-hero h2 {
    max-width: 760px;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.admin-hero p {
    max-width: 820px;
    margin-bottom: 0;
}

.admin-version-card {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(6, 59, 120, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .84);
}

.admin-version-card span,
.admin-version-card small {
    color: var(--muted);
    font-weight: 800;
}

.admin-version-card strong {
    color: var(--navy);
    font-size: 2rem;
    line-height: 1;
}

.admin-kpi-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.admin-kpi-card {
    display: grid;
    gap: 8px;
    min-height: 144px;
    padding: 18px;
    border-color: rgba(6, 59, 120, .1);
}

.admin-kpi-card .icon {
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: var(--radius);
    color: var(--navy);
    background: #e8f7f7;
}

.admin-kpi-card span {
    color: var(--navy-900);
    font-size: 2rem;
    font-weight: 950;
    line-height: 1;
}

.admin-kpi-card p {
    margin: 0;
    font-weight: 820;
}

.admin-kpi-card.needs-attention .icon {
    color: #1e1604;
    background: #fff0c8;
}

.admin-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 22px;
}

.admin-dashboard-panel {
    min-width: 0;
}

.admin-panel-title {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.admin-panel-title h2 {
    font-size: 1.45rem;
}

.admin-panel-title p {
    margin-bottom: 0;
}

.admin-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.admin-action-grid a {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 86px;
    padding: 14px;
    border: 1px solid rgba(6, 59, 120, .1);
    border-radius: var(--radius);
    background: #f8fbfc;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.admin-action-grid a:hover {
    transform: translateY(-3px);
    border-color: rgba(25, 183, 198, .45);
    box-shadow: 0 12px 28px rgba(7, 24, 38, .08);
}

.admin-action-grid .icon {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: var(--radius);
    color: var(--navy);
    background: #e8f7f7;
}

.admin-action-grid strong,
.admin-action-grid small {
    display: block;
}

.admin-action-grid small {
    color: var(--muted);
    line-height: 1.35;
}

.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.pipeline-grid > div,
.pipeline-grid > a {
    display: grid;
    gap: 4px;
    padding: 15px;
    border: 1px solid rgba(6, 59, 120, .1);
    border-radius: var(--radius);
    background: #f8fbfc;
}

.pipeline-grid > a {
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.pipeline-grid > a:hover,
.pipeline-grid > a.is-active {
    transform: translateY(-2px);
    border-color: rgba(25, 183, 198, .48);
    background: #eef9f8;
}

.pipeline-grid span {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.pipeline-grid strong {
    color: var(--navy-900);
    font-size: 1.7rem;
    line-height: 1;
}

.pipeline-grid small {
    color: var(--muted);
}

.pipeline-grid-wide {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-bottom: 22px;
}

.health-list,
.backup-list {
    display: grid;
    gap: 10px;
}

.health-row {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px;
    border: 1px solid rgba(6, 59, 120, .08);
    border-radius: var(--radius);
    background: #f8fbfc;
}

.health-row strong,
.health-row small,
.backup-list strong,
.backup-list span,
.backup-list small {
    display: block;
}

.health-row small,
.backup-list span,
.backup-list small {
    color: var(--muted);
}

.health-dot {
    width: 12px;
    height: 12px;
    margin-top: 6px;
    border-radius: 999px;
    background: var(--muted);
}

.health-dot.is-good {
    background: #18a85d;
}

.health-dot.is-warn {
    background: var(--gold);
}

.health-dot.is-bad {
    background: #d64040;
}

.backup-list > div {
    padding: 12px;
    border: 1px solid rgba(6, 59, 120, .08);
    border-radius: var(--radius);
    background: #f8fbfc;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 900;
    white-space: nowrap;
}

.status-new {
    color: #08456b;
    background: #e4f3ff;
}

.status-contacted {
    color: #705007;
    background: #fff0c8;
}

.status-converted {
    color: #103f2d;
    background: #e3f8ed;
}

.status-closed {
    color: #4b5560;
    background: #eef1f3;
}

.crm-toolbar {
    margin: 22px 0 14px;
}

.crm-table td {
    min-width: 150px;
}

.crm-table td:first-child,
.crm-table td:nth-child(2) {
    min-width: 220px;
}

.crm-table strong,
.crm-table small {
    display: block;
}

.crm-table p {
    margin: 6px 0;
    font-size: .94rem;
}

.crm-inline-form {
    display: grid;
    gap: 8px;
    min-width: 230px;
}

.crm-inline-form textarea {
    min-height: 86px;
}

.crm-actions {
    display: grid;
    gap: 8px;
    min-width: 150px;
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.table-actions form {
    margin: 0;
}

.btn-danger {
    color: #8e2020;
    border-color: #efb2b2;
    background: #fff3f3;
}

.btn-danger:hover,
.btn-danger:focus-visible {
    color: var(--white);
    background: #b43232;
    border-color: #b43232;
}

.form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.crm-search {
    margin-bottom: 18px;
}

.crm-search .form-actions {
    align-self: end;
}

.crm-timeline {
    border: 1px solid rgba(6, 59, 120, .1);
    border-radius: 6px;
    background: #f8fbfc;
}

.crm-timeline summary {
    padding: 8px 10px;
    cursor: pointer;
    color: var(--navy);
    font-weight: 850;
}

.crm-timeline ul {
    display: grid;
    gap: 8px;
    padding: 0 10px 10px;
    margin: 0;
    list-style: none;
}

.crm-timeline li {
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    margin: 22px 0;
}

.is-disabled {
    pointer-events: none;
    opacity: .45;
}

.media-meta-form {
    display: grid;
    gap: 7px;
    margin-top: 4px;
}

.media-meta-form input {
    min-height: 38px;
    padding: 7px 9px;
    font-size: .86rem;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.media-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f8fbfc;
}

.media-preview {
    display: grid;
    place-items: center;
    min-height: 150px;
    background: #071826;
}

.media-preview img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.media-meta {
    display: grid;
    gap: 6px;
    padding: 12px;
}

.media-meta strong {
    line-height: 1.25;
}

.media-meta span {
    color: var(--muted);
    font-size: .86rem;
}

code {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    padding: 3px 6px;
    border-radius: 5px;
    color: #0d4f67;
    background: #eef7f9;
    font-size: .86em;
}

.blog-detail {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.blog-detail > img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 26px;
}

.blog-content {
    font-size: 1.08rem;
}

.blog-content h2,
.blog-content h3 {
    margin-top: 30px;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageIn {
    from {
        opacity: .96;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageOut {
    from {
        opacity: 1;
    }
    to {
        opacity: .96;
    }
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes clientSlide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes flashPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(244, 166, 42, .42);
    }
    50% {
        box-shadow: 0 0 0 9px rgba(244, 166, 42, 0);
    }
}

@media (max-width: 980px) {
    .hero-inner,
    .split,
    .about-proof-layout,
    .section-head,
    .cta-band-inner,
    .footer-top,
    .footer-grid,
    .why-layout,
    .admin-layout,
    .admin-hero,
    .admin-panel-grid {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        min-height: auto;
    }

    .premium-hero-visual {
        min-height: auto;
    }

    .hero-image-stage,
    .hero-image-stage img {
        min-height: 360px;
    }

    .grid-3,
    .grid-4,
    .grid-5,
    .service-showcase-grid,
    .contact-method-grid,
    .client-summary-grid,
    .stats-grid,
    .admin-kpi-grid,
    .media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pipeline-grid,
    .pipeline-grid-wide,
    .admin-action-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metrics-panel {
        position: static;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .process-board,
    .showcase-preview,
    .client-admin-panel,
    .cta-band-inner {
        grid-template-columns: 1fr;
    }

    .about-proof-layout > .reveal:first-child {
        border-left: 0;
        border-top: 4px solid var(--gold);
    }

    .client-admin-panel .btn {
        justify-self: start;
    }

    .process-board-intro {
        padding: 24px;
    }

    .showcase-visual,
    .showcase-visual img {
        min-height: 320px;
    }

    .process-line::before {
        display: none;
    }

    .site-nav {
        position: absolute;
        top: 76px;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .admin-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    :root {
        --container: min(100vw - 28px, 1180px);
    }

    .section {
        padding: 66px 0;
    }

    .hero-inner {
        gap: 26px;
        padding: 58px 0 70px;
    }

    .hero-visual,
    .premium-hero-visual {
        min-height: auto;
    }

    .hero-image-stage,
    .hero-image-stage img {
        min-height: 300px;
    }

    .hero-service-strip,
    .metrics-panel {
        grid-template-columns: 1fr;
    }

    .hero-service-mini {
        min-height: 68px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5,
    .service-showcase-grid,
    .contact-method-grid,
    .client-summary-grid,
    .stats-grid,
    .form-grid,
    .admin-kpi-grid,
    .pipeline-grid,
    .pipeline-grid-wide,
    .admin-action-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .admin-main {
        padding: 22px 16px;
    }

    .admin-top,
    .admin-panel-title,
    .crm-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-hero,
    .form-card {
        padding: 20px;
    }

    .admin-version-card .btn,
    .crm-actions .btn,
    .admin-panel-title .btn {
        width: 100%;
    }

    .table-actions,
    .pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .table-actions .btn,
    .table-actions form,
    .table-actions form .btn {
        width: 100%;
    }

    .crm-inline-form {
        min-width: 210px;
    }

    .client-logo-card.no-logo {
        min-width: 210px;
    }

    .page-hero .container,
    .hero-copy,
    .split > .reveal:first-child,
    .section-head,
    .showcase-head,
    .clientele-home-head,
    .cta-copy,
    .client-admin-panel {
        text-align: center;
    }

    .page-hero .eyebrow,
    .hero-copy .eyebrow,
    .split > .reveal:first-child > .eyebrow,
    .section-head .eyebrow,
    .showcase-head .eyebrow,
    .clientele-home-head .eyebrow,
    .cta-copy .eyebrow,
    .client-admin-panel .eyebrow {
        justify-content: center;
    }

    .hero-actions,
    .trust-badges,
    .form-actions,
    .cta-proof-list,
    .clientele-category-pills {
        justify-content: center;
    }

    .split > .reveal:first-child .contact-list {
        text-align: left;
    }

    .client-admin-panel .btn {
        justify-self: stretch;
    }

    .service-card-body h3,
    .service-card-body p {
        min-height: 0;
    }

    .about-visual-panel,
    .about-visual-panel img {
        min-height: 340px;
    }

    .about-proof-layout > .reveal:first-child {
        padding: 24px 18px;
    }

    .about-proof-grid article {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .about-proof-grid article span,
    .about-proof-grid p {
        grid-column: auto;
        grid-row: auto;
    }

    .accordion-item summary {
        grid-template-columns: 48px 1fr 32px;
        padding: 16px;
    }

    .accordion-icon {
        width: 48px;
        height: 48px;
    }

    .accordion-panel {
        padding: 0 16px 18px;
    }

    .accordion-item[open] .accordion-panel {
        padding: 0 16px 18px;
    }

    .process-board {
        padding: 12px;
    }

    .process-step {
        grid-template-columns: 58px 1fr;
        min-height: 0;
        gap: 12px;
        padding: 15px;
        text-align: left;
    }

    .process-tag {
        grid-column: 2;
        grid-row: 1;
        align-self: end;
        margin-top: 34px;
    }

    .process-step > div {
        grid-column: 1 / -1;
    }

    .cta-band {
        padding: 48px 0;
    }

    .cta-action-panel {
        padding: 10px;
    }

    .cta-action-card {
        grid-template-columns: 44px 1fr;
    }

    .cta-action-card .icon {
        width: 44px;
        height: 44px;
    }

    .footer-admin-strip {
        align-items: stretch;
        flex-direction: column;
    }

    .footer-admin-strip a {
        width: 100%;
    }

    .map-wide {
        min-height: 330px;
    }

    .client-slider::before,
    .client-slider::after {
        width: 36px;
    }

    .client-track {
        animation-duration: 56s;
    }

    .client-logo-card {
        grid-template-columns: 48px 1fr;
        min-width: 240px;
    }

    .reveal {
        transform: translateY(10px);
        transition-duration: .4s;
    }

    .btn {
        width: 100%;
    }

    .float-whatsapp {
        width: 54px;
        height: 54px;
        right: 14px;
        bottom: 14px;
    }

    .back-top {
        right: 18px;
        bottom: 80px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
