/* ================================================
   construction-advisory.css
   LeaseTime — Construction Advisory & Execution Management

   ✅ NO local :root block — all colors come from
      styles.css global variables:
        --brand        (primary accent, was --gold)
        --brand-dark   (hover accent, was --gold-dark)
        --brand-pale   (tinted bg,    was gold rgba)
        --black        --white        --offwhite
        --grey-bg      --grey-text    --border
        --dark-bg      --dark-line    --border-subtle
        --font-body    --font-head
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500&display=swap');

/* ================================================
   ANIMATIONS & KEYFRAMES
================================================ */
.cna-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.cna-reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.cna-reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.cna-reveal.cna-visible,
.cna-reveal-left.cna-visible,
.cna-reveal-right.cna-visible {
    opacity: 1;
    transform: none;
}

@keyframes cnaFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes cnaFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes cnaTagFade {
    from { opacity: 0; letter-spacing: 0.30em; }
    to   { opacity: 1; letter-spacing: 0.18em; }
}

@keyframes cnaGoldShimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes cnaImgReveal {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0% 0 0); }
}

@keyframes cnaBadgePop {
    0%   { transform: scale(0.6); opacity: 0; }
    70%  { transform: scale(1.08); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes cnaPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

@keyframes cnaBarGrow {
    from { width: 0; }
}

/* ================================================
   HERO BANNER
================================================ */
.cna-hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: url('/images/services/constructionbanner.jfif') center/cover no-repeat;
}

/* Vertical brand rule — left edge */
.cna-hero::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--brand) 30%, #fffefa 70%, transparent);
    z-index: 2;
}

.cna-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10,10,10,0.97) 45%, rgba(10,10,10,0.60) 100%),
        url('images/services/consult.jpg') center/cover no-repeat;
    z-index: 0;
}

.cna-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0 64px;
}

.cna-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    border: 1px solid var(--border);
    padding: 6px 16px 6px 12px;
    animation: cnaFadeIn 0.6s ease both;
}

.cna-hero-eyebrow::before {
    content: '';
    display: block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0;
    animation: cnaPulse 2s 1s ease infinite;
}

.cna-hero-eyebrow span {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0;
    animation: cnaTagFade 0.8s 0.4s ease forwards;
}

.cna-hero h1 {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    max-width: 780px;
    animation: cnaFadeUp 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cna-hero h1 span {
    font-style: normal;
    background: linear-gradient(90deg, var(--brand), var(--brand-dark), var(--brand));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: cnaGoldShimmer 3s 1.5s linear infinite;
    -webkit-text-stroke: 1px var(--white);
}

.cna-hero-desc {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.50);
    max-width: 560px;
    line-height: 1.8;
    margin: 0;
    opacity: 0;
    animation: cnaFadeUp 0.9s 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ================================================
   BREADCRUMB
================================================ */
.cna-breadcrumb {
    background: var(--dark-bg);
    border-top: 1px solid var(--dark-line);
    padding: 14px 0;
}

.cna-breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.04em;
}

.cna-breadcrumb-inner a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.cna-breadcrumb-inner a:hover { color: var(--brand); }

.cna-breadcrumb-inner .bsep {
    color: var(--brand);
    font-size: 10px;
}

.cna-breadcrumb-inner .bcurrent { color: rgba(255,255,255,0.65); }

/* ================================================
   SHARED SECTION HEADER
================================================ */
.cna-sec-header { margin-bottom: 56px; }
.cna-sec-header.center { text-align: center; }

.cna-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 14px;
}

.cna-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--brand);
}

.cna-sec-header.center .cna-tag { justify-content: center; }
.cna-sec-header.center .cna-tag::before { display: none; }
.cna-sec-header.center .cna-tag::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--brand);
}

.cna-sec-header h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 16px;
}

.cna-sec-header h2 em {
    font-style: normal;
    color: var(--brand);
}

.cna-sec-header p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--grey-text);
    line-height: 1.85;
    max-width: 680px;
    margin: 0;
}

.cna-sec-header.center p { margin: 0 auto; }

/* ================================================
   INTRO SECTION
================================================ */
.cna-intro {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.cna-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
}

.cna-intro-text {
    background: var(--offwhite);
    padding: 80px 60px 80px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cna-intro-text p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: #444;
    line-height: 1.95;
    margin: 0 0 18px;
}

.cna-intro-text p:last-child { margin: 0; }

.cna-intro-img {
    position: relative;
    overflow: hidden;
    clip-path: polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.cna-intro-img.cna-visible img {
    animation: cnaImgReveal 1.2s cubic-bezier(0.77,0,0.18,1) both;
}

.cna-intro-img img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.6s ease;
}

.cna-intro-img:hover img {
    transform: scale(1.06);
    filter: brightness(0.85);
}

/* Brand-tinted overlay on hover */
.cna-intro-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        var(--brand-pale) 0%,
        transparent 60%
    );
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.cna-intro-img:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.cna-intro-img-badge {
    position: absolute;
    bottom: 32px;
    left: 40px;
    background: var(--black);
    padding: 20px 26px;
    min-width: 190px;
    border-left: 3px solid var(--brand);
    opacity: 0;
    z-index: 2;
}

.cna-intro-img.cna-visible .cna-intro-img-badge {
    animation: cnaBadgePop 0.7s 1s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

.cna-intro-img-badge .badge-num {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
    display: block;
}

.cna-intro-img-badge .badge-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
}

/* ================================================
   CONTROL PILLARS — dark section
================================================ */
.cna-pillars {
    padding: 96px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.cna-pillars::after {
    content: 'EXECUTION';
    position: absolute;
    right: -20px; bottom: -30px;
    font-size: 130px;
    font-weight: 800;
    color: rgba(255,255,255,0.02);
    letter-spacing: 0.1em;
    pointer-events: none;
    white-space: nowrap;
    font-family: var(--font-head);
}

.cna-pillars .cna-sec-header h2 { color: var(--white); }
.cna-pillars .cna-sec-header p  { color: rgba(255,255,255,0.45); }
.cna-pillars .cna-tag           { color: var(--brand); }
.cna-pillars .cna-tag::before,
.cna-pillars .cna-tag::after    { background: var(--brand); }

.cna-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--dark-line);
}

.cna-pillar-item {
    background: rgba(255,255,255,0.03);
    padding: 44px 36px;
    position: relative;
    transition: background 0.3s;
    overflow: hidden;
}

/* Brand-color top border swipe on hover */
.cna-pillar-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cna-pillar-item:hover { background: var(--brand-pale); }
.cna-pillar-item:hover::before { transform: scaleX(1); }

.cna-pillar-icon {
    width: 52px; height: 52px;
    border: 1.5px solid var(--brand-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: border-color 0.25s, background 0.25s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cna-pillar-item:hover .cna-pillar-icon {
    border-color: var(--brand);
    background: var(--brand);
    transform: rotate(6deg);
}

.cna-pillar-icon svg {
    width: 22px; height: 22px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.25s;
}

.cna-pillar-item:hover .cna-pillar-icon svg { stroke: var(--white); }

.cna-pillar-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 12px;
    line-height: 1.3;
}

.cna-pillar-item p {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    margin: 0;
}

/* ================================================
   CONTROL AREAS — checklist
================================================ */
.cna-control {
    padding: 96px 0;
    background: var(--grey-bg);
}

.cna-control-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cna-control-block {
    background: var(--white);
    border-top: 3px solid var(--brand);
    padding: 40px;
}

.cna-control-block-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cna-control-block-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.cna-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cna-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: #444;
    line-height: 1.65;
    transition: color 0.2s;
}

.cna-checklist li:last-child { border-bottom: none; }
.cna-checklist li:hover { color: var(--black); }

.cna-check-dot {
    flex-shrink: 0;
    margin-top: 4px;
    width: 18px; height: 18px;
    border: 1.5px solid var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cna-checklist li:hover .cna-check-dot { background: var(--brand); }

.cna-check-dot svg {
    width: 10px; height: 10px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s;
}

.cna-checklist li:hover .cna-check-dot svg { stroke: var(--white); }

/* ================================================
   WORKFLOW — horizontal step flow
================================================ */
.cna-workflow {
    padding: 96px 0;
    background: var(--white);
}

.cna-workflow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.cna-workflow-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(50% / 3);
    right: calc(50% / 3);
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.cna-workflow-step {
    padding: 0 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cna-step-num {
    width: 72px; height: 72px;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
    font-family: var(--font-head);
    transition: border-color 0.3s, background 0.3s, color 0.3s,
                transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.cna-workflow-step:hover .cna-step-num {
    border-color: var(--brand);
    background: var(--brand);
    color: var(--white);
    transform: scale(1.1);
}

.cna-step-num::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

.cna-workflow-step:hover .cna-step-num::after { border-color: var(--brand); }

.cna-workflow-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 10px;
    line-height: 1.3;
}

.cna-workflow-step p {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 300;
    color: var(--grey-text);
    line-height: 1.75;
    margin: 0;
}

/* ================================================
   QUALITY ASSURANCE — dark section
================================================ */
.cna-quality {
    background: var(--black);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cna-quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cna-quality-left .cna-tag         { color: var(--brand); }
.cna-quality-left .cna-tag::before { background: var(--brand); }

.cna-quality-left h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 28px;
}

.cna-quality-left p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.50);
    line-height: 1.9;
    margin: 0 0 18px;
}

.cna-quality-right {
    border-left: 1px solid var(--dark-line);
    padding-left: 60px;
}

.cna-audit-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cna-audit-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--dark-line);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: padding-left 0.3s ease;
}

.cna-audit-item:last-child { border-bottom: none; }
.cna-audit-item:hover { padding-left: 8px; }

.cna-audit-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.12em;
    flex-shrink: 0;
    margin-top: 2px;
}

.cna-audit-body h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 6px;
    line-height: 1.3;
}

.cna-audit-body p {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.40);
    line-height: 1.75;
    margin: 0;
}

/* Stats row */
.cna-quality-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--dark-line);
    margin-top: 40px;
}

.cna-stat {
    padding: 28px 24px;
    border-right: 1px solid var(--dark-line);
    text-align: center;
}

.cna-stat:last-child { border-right: none; }

.cna-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--brand);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    font-family: var(--font-head);
}

.cna-stat-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ================================================
   QUOTE / INSIGHT BLOCK
================================================ */
.cna-quote-section {
    background: var(--white);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.cna-quote-section::before {
    content: '"';
    position: absolute;
    left: 40px; top: -10px;
    font-size: 220px;
    font-weight: 800;
    color: rgba(0,0,0,0.06);
    font-family: var(--font-head);
    line-height: 1;
    pointer-events: none;
}

.cna-quote-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cna-quote-inner blockquote {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--black);
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin: 0 0 20px;
}

.cna-quote-inner cite {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--grey-text);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-style: normal;
}

/* ================================================
   CTA STRIP
================================================ */
.lsa-cta {
    background: var(--brand);
    padding: 72px 0;
}

.lsa-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.lsa-cta-text h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    line-height: 1.15;
}

.lsa-cta-text p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.70);
    margin: 0;
}

.lsa-cta-btns {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.lsa-btn-dark {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.lsa-btn-dark:hover {
    background: #1f1f1f;
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.28);
}

.lsa-btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 15px 36px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.lsa-btn-ghost:hover {
    background: var(--white);
    color: var(--brand);
    text-decoration: none;
    transform: translateY(-2px);
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1100px) {
    .cna-pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .cna-intro-grid         { grid-template-columns: 1fr; }
    .cna-intro-img          { clip-path: none; min-height: 340px; }
    .cna-control-grid       { grid-template-columns: 1fr; gap: 32px; }
    .cna-workflow-steps     { grid-template-columns: 1fr; }
    .cna-workflow-steps::before { display: none; }
    .cna-workflow-step      { padding: 0 0 40px; text-align: left; display: flex; gap: 24px; align-items: flex-start; }
    .cna-step-num           { margin: 0; flex-shrink: 0; }
    .cna-quality-grid       { grid-template-columns: 1fr; gap: 50px; }
    .cna-quality-right      { border-left: none; padding-left: 0; border-top: 1px solid var(--dark-line); padding-top: 50px; }
    .lsa-cta-inner          { flex-direction: column; text-align: center; align-items: center; }
    .lsa-cta-btns           { justify-content: center; }
}

@media (max-width: 767px) {
    .cna-hero               { min-height: 340px; }
    .cna-intro,
    .cna-pillars,
    .cna-control,
    .cna-workflow,
    .cna-quality,
    .cna-quote-section,
    .lsa-cta                { padding: 64px 0; }
    .cna-pillars-grid       { grid-template-columns: 1fr; }
    .cna-quality-stats      { grid-template-columns: 1fr; }
    .cna-stat               { border-right: none; border-bottom: 1px solid var(--dark-line); }
    .cna-stat:last-child    { border-bottom: none; }
    .cna-intro-text         { padding: 40px 24px; }
}

@media (prefers-reduced-motion: reduce) {
    .cna-reveal,
    .cna-reveal-left,
    .cna-reveal-right       { opacity: 1; transform: none; transition: none; }
    .cna-hero h1,
    .cna-hero-desc,
    .cna-hero-eyebrow,
    .cna-hero-eyebrow span  { animation: none; opacity: 1; }
    .cna-hero h1 span       { animation: none; -webkit-text-fill-color: var(--brand); color: var(--brand); }
    .cna-intro-img.cna-visible img,
    .cna-intro-img.cna-visible .cna-intro-img-badge { animation: none; opacity: 1; clip-path: none; }
}