:root {
    --ink:#0b0a0e;
    --panel:#141318;
    --paper:#f5f4f0;
    --muted:#a4a4aa;
    --line:#26232b;
    --red:#ff2a44;
    --red-hover:#ff475e;
    --red-glow:rgba(255, 42, 68, 0.45);
    --ruby:#ff526c;
    --lime:var(--red);
    --violet:var(--ruby);
    --bs-body-font-family:Arial,Helvetica,sans-serif;
    --bs-body-color:var(--paper);
    --bs-body-bg:var(--ink)
}
* {
    box-sizing:border-box
}
html {
    scroll-behavior:smooth;
    scroll-padding-top:100px
}
body {
    margin:0;
    font-size:16px;
    line-height:1.65;
    -webkit-font-smoothing:antialiased
}
::selection {
    background:var(--red);
    color:#ffffff
}
a {
    color:inherit;
    text-decoration:none
}
a:hover {
    color:var(--red)
}
button,a,input,select,textarea {
    touch-action:manipulation
}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible {
    outline:3px solid var(--red);
    outline-offset:5px
}
h1,h2,h3,p {
    margin-top:0
}
h1,h2,h3 {
    font-weight:600;
    line-height:1.06;
    letter-spacing:-.05em
}
h1 {
    font-size:clamp(3.8rem,7.3vw,7.2rem);
    letter-spacing:-.065em
}
h2 {
    font-size:clamp(2.1rem,3.55vw,3.5rem)
}
h3 {
    font-size:1.65rem;
    letter-spacing:-.035em
}
p {
    color:var(--muted)
}
.container-wide {
    width:min(1320px,calc(100% - 100px));
    margin-inline:auto
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(16, 16, 18, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
    background: rgba(11, 10, 14, 0.96);
    border-bottom-color: rgba(255, 42, 68, 0.2);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65), 0 1px 0 rgba(255, 42, 68, 0.15);
}

.navbar {
    min-height: 98px;
    padding: 18px 0;
    transition: min-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled .navbar {
    min-height: 72px;
    padding: 10px 0;
}

.site-header .brand {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled .brand {
    transform: scale(0.96);
}

.site-header .nav-cta {
    transition: padding 0.3s ease, font-size 0.3s ease;
}

.site-header.is-scrolled .nav-cta {
    padding: 10px 20px;
    font-size: 0.86rem;
}

@media (max-width: 991px) {
    .site-header .navbar-collapse {
        background: #121116;
        border: 1px solid #381c22;
        border-radius: 18px;
        padding: 22px 24px;
        margin-top: 14px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
    }
    .site-header .navbar-nav {
        gap: 14px;
    }
    .site-header .nav-cta {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}
.brand {
    display:inline-flex;
    gap:13px;
    align-items:center;
    font-size:1.55rem;
    font-weight:750;
    letter-spacing:-.055em;
    color:var(--paper);
    line-height:1.1
}
.brand small {
    display:block;
    font-size:.55rem;
    letter-spacing:.16em;
    font-weight:500;
    margin-top:7px;
    color:#b0afb5
}
.brand-mark {
    font-size:2.45rem;
    line-height:1;
    position:relative;
    font-weight:900;
    font-style:italic;
    color:var(--lime);
    width:48px
}
.brand-mark span {
    font-size:1.3rem;
    position:absolute;
    right:0;
    top:-5px
}
.brand-logo {
    max-height:58px;
    max-width:230px;
    object-fit:contain
}
.nav-link {
    font-size:.9rem;
    color:#b9b9c0!important
}
.nav-link:hover,.nav-link.active {
    color:var(--paper)!important
}
.nav-link.active:before {
    content:'•';
    color:var(--lime);
    margin-right:7px
}
.button {
    border:1px solid transparent;
    border-radius:99px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    padding:16px 24px;
    font-size:.9rem;
    font-weight:600;
    line-height:1.35;
    transition:transform .2s,background .2s;
    color:var(--ink);
    text-align:center
}
.button:hover {
    transform:translateY(-3px);
    color:var(--ink)
}
.button span {
    font-size:1.4rem;
    line-height:1
}
.button-light {
    background:var(--paper)
}
.button-red,
.button-lime {
    background:var(--red);
    color:#ffffff;
    box-shadow: 0 4px 20px rgba(255, 42, 68, 0.35);
}
.button-red:hover,
.button-lime:hover {
    background:var(--red-hover);
    color:#ffffff;
    box-shadow: 0 6px 28px rgba(255, 42, 68, 0.55);
}
.button-outline {
    border-color:#5c5c63;
    color:var(--paper)
}
.button-outline:hover {
    background:var(--paper)
}
.nav-cta {
    margin-left:15px;
    padding:12px 23px
}
.navbar-toggler {
    color:var(--paper);
    border:1px solid #5c5c63;
    font-size:1rem;
    padding:10px
}
.hero {
    display:grid;
    grid-template-columns:1.05fr 1fr;
    align-items:center;
    min-height:660px;
    padding-block:50px 65px;
    position:relative
}
.hero-copy {
    z-index:2;
    padding-top:10px
}
.eyebrow {
    font-size:.7rem;
    letter-spacing:.14em;
    font-weight:600;
    color:var(--muted);
    margin-bottom:25px
}
.hero .eyebrow {
    display:flex;
    align-items:center;
    gap:10px;
    font-size:.72rem
}
.tiny-cross {
    color:var(--lime);
    font-size:1.6rem;
    line-height:1
}
.hero h1 {
    margin-bottom:29px;
    white-space:nowrap
}
.hero h1>span {
    color:var(--violet)
}
.hero-description {
    max-width:420px;
    font-size:1rem;
    line-height:1.8;
    margin-bottom:30px
}
.hero-actions {
    display:flex;
    gap:25px;
    align-items:center;
    flex-wrap:wrap
}
.text-link {
    font-size:.88rem;
    display:inline-flex;
    align-items:center;
    gap:16px;
    text-decoration:none
}
.hero-footnote {
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:49px;
    color:#96969d;
    font-size:.64rem;
    letter-spacing:.14em
}
.little-bars {
    height:23px;
    display:flex;
    align-items:center;
    gap:3px
}
.little-bars i {
    display:block;
    background:var(--lime);
    width:3px;
    height:10px
}
.little-bars i:nth-child(2) {
    height:18px
}
.little-bars i:nth-child(3) {
    height:25px
}
.little-bars i:nth-child(4) {
    height:15px
}
.hero-art {
    position:relative;
    aspect-ratio:1/1;
    width:112%;
    margin-left:-8%;
    align-self:center;
    overflow:hidden;
    border-radius:30px
}
.hero-art img {
    height:100%;
    width:100%;
    object-fit:cover;
    mix-blend-mode:lighten;
    mask-image:radial-gradient(ellipse,black 50%,transparent 74%)
}
.art-label {
    position:absolute;
    border:1px solid #696370;
    background:rgba(16,16,18,.5);
    border-radius:30px;
    font-size:.62rem;
    letter-spacing:.12em;
    padding:9px 15px;
    backdrop-filter:blur(10px)
}
.art-label-top {
    top: 7%;
    right: 5%;
    transform: rotate(6deg);
}
.art-caption {
    position: absolute;
    bottom: 7%;
    left: 5%;
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid #66606e;
    border-radius: 12px;
    padding: 12px 16px;
    background: rgba(21, 20, 26, 0.75);
    backdrop-filter: blur(15px);
    font-size: 0.73rem;
    line-height: 1.5;
    color: #c7c4cf;
    transform: rotate(-4deg);
    max-width: 250px;
}
.art-caption strong {
    font-weight: 500;
    color: var(--paper);
}
.caption-star {
    font-size: 1.8rem;
    color: var(--lime);
}
.art-index {
    position: absolute;
    right: 2%;
    top: 45%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    color: #88828e;
}
.ticker {
    overflow:hidden;
    background:var(--red);
    color:#ffffff;
    font-weight:700;
    padding:18px 0;
    transform:rotate(-1.5deg);
    margin:0 -1px;
    max-width:100%;
    box-shadow: 0 0 35px rgba(255, 42, 68, 0.4);
}
.ticker-track {
    display:flex;
    align-items:center;
    gap:36px;
    width:max-content;
    animation:marquee 36s linear infinite;
    font-size:2rem;
    font-weight:750;
    letter-spacing:-.04em;
    line-height:1.2
}
.ticker-track b {
    font-size:1.8rem
}
.ticker-track .outline {
    color:transparent;
    -webkit-text-stroke:1px rgba(255, 255, 255, 0.85)
}
@keyframes marquee {
    to {
        transform:translateX(-50%)
    }
}
.section {
    padding-block:110px
}
.section-heading {
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:40px;
    margin-bottom:45px
}
.section-heading .eyebrow {
    margin-bottom:24px
}
.section-heading h2 {
    margin-bottom:0
}
.section-heading>p {
    font-size:.9rem;
    max-width:340px;
    margin-bottom:3px
}
.muted-heading {
    color:#96969f
}
.service-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    border-top:1px solid var(--line);
    border-left:1px solid var(--line)
}
.service-card {
    display:block;
    position:relative;
    padding:28px 30px 26px;
    border-bottom:1px solid var(--line);
    border-right:1px solid var(--line);
    transition:background .25s;
    min-height:305px
}
.service-card:hover {
    background:#26212f;
    color:var(--paper)
}
.service-top {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px
}
.service-number {
    font-size:.72rem;
    color:#a5a2ac
}
.service-arrow {
    font-size:1.7rem;
    font-weight:400;
    line-height:1;
    color:var(--violet)
}
.service-card h3 {
    max-width:270px;
    margin-bottom:16px;
    font-size:1.6rem
}
.service-card p {
    font-size:.88rem;
    line-height:1.75;
    margin-bottom:28px;
    max-width:330px
}
.service-bottom {
    font-size:.76rem;
    color:#ddd9e7;
    display:flex;
    align-items:center;
    gap:12px
}
.service-thumb {
    width:100%;
    height:150px;
    object-fit:cover;
    margin-bottom:20px;
    border-radius:5px
}
.about-band {
    background:#19191d
}
.row-wrap {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center
}
.about-poster {
    position:relative;
    background:linear-gradient(135deg, #ff2a44 0%, #b8142a 100%);
    color:#ffffff;
    padding:34px 34px 68px;
    min-height:430px;
    overflow:hidden;
    transform:rotate(-2deg);
    box-shadow: 0 15px 45px rgba(255, 42, 68, 0.35);
}
.poster-small,.poster-bottom {
    font-size:.64rem;
    font-weight:700;
    letter-spacing:.12em;
    display:block
}
.about-poster>div {
    font-size:clamp(2rem,3.55vw,3.6rem);
    font-weight:900;
    line-height:1.03;
    letter-spacing:-.065em;
    margin-top:35px
}
.about-poster>div>span {
    color:transparent;
    -webkit-text-stroke:1px rgba(255, 255, 255, 0.85)
}
.poster-cross {
    position:absolute;
    right:20px;
    bottom:25px;
    font-size:6.2rem;
    line-height:1;
    transform:rotate(10deg)
}
.poster-bottom {
    position:absolute;
    bottom:24px;
    left:34px;
    max-width:180px
}
.about-copy h2 {
    margin-bottom:25px
}
.about-copy p {
    font-size:1rem;
    line-height:1.85
}
.about-copy .button {
    margin-top:15px
}
.preserve-lines {
    white-space:pre-line;
    overflow-wrap:anywhere
}
.process-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:55px
}
.process-card {
    border-top:1px solid #4a4a50;
    padding-top:23px
}
.step-number {
    font-size:.8rem;
    color:var(--violet);
    display:block;
    margin-bottom:28px
}
.process-card h3 {
    font-size:1.65rem;
    margin-bottom:16px
}
.process-card p {
    font-size:.9rem;
    line-height:1.8;
    max-width:310px
}
.clients-section {
    padding-bottom:100px;
    text-align:center
}
.client-grid {
    display:flex;
    flex-wrap:wrap;
    gap:50px;
    align-items:center;
    justify-content:center
}
.client-name {
    font-size:1.5rem;
    font-weight:700;
    letter-spacing:-.04em
}
.client-name img {
    width:140px;
    height:80px;
    object-fit:contain
}
.project-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:25px
}
.project-card>img,.project-type {
    width:100%;
    height:290px;
    object-fit:cover;
    background:var(--violet);
    border-radius:7px
}
.project-type {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:30px;
    color:var(--ink);
    font-size:2rem;
    font-weight:bold
}
.project-card h3 {
    font-size:1.45rem;
    display:flex;
    justify-content:space-between;
    gap:10px
}
.project-card>p:not(.eyebrow) {
    font-size:.9rem
}
.footer-cta {
    border-top:1px solid #414147;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-block:65px 80px
}
.footer-cta h2 {
    font-size:clamp(3.5rem,7vw,6.6rem);
    letter-spacing:-.065em;
    line-height:.98;
    margin-bottom:0
}
.footer-cta em {
    font-style:normal;
    color:var(--violet)
}
.circle-link {
    width:170px;
    height:170px;
    flex-shrink:0;
    border-radius:50%;
    background:var(--red);
    color:#ffffff;
    box-shadow: 0 0 35px rgba(255, 42, 68, 0.4);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    font-size:.75rem;
    font-weight:bold;
    transform:rotate(-8deg);
    transition:transform .3s, background .3s, box-shadow .3s
}
.circle-link>span:first-child {
    font-size:3rem;
    line-height:1.2;
    margin-bottom:6px
}
.circle-link:hover {
    color:#ffffff;
    background:var(--red-hover);
    box-shadow: 0 0 55px rgba(255, 42, 68, 0.65);
    transform:rotate(0) scale(1.06)
}
/* ==========================================================================
   Creative Footer Design (Contact Hub, Phone, Email, Address, Status)
   ========================================================================== */

.site-footer {
    background: linear-gradient(180deg, #0e0b13 0%, #07050a 100%);
    border-top: 1px solid rgba(165, 138, 255, 0.18);
    padding-top: 65px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lime), transparent);
    opacity: 0.7;
}

/* 3-Column Creative Contact Hub */
.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 22px;
    margin-bottom: 60px;
}

.footer-contact-card {
    background: linear-gradient(145deg, #1b1625 0%, #120e19 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 26px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-decoration: none;
    color: var(--paper);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-contact-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at top right, rgba(255, 42, 68, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.footer-contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 42, 68, 0.45);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(255, 42, 68, 0.2);
    color: var(--paper);
}

.footer-contact-card:hover::after {
    opacity: 1;
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-contact-card:hover .contact-card-icon {
    transform: scale(1.06);
}

.phone-icon {
    background: rgba(255, 42, 68, 0.12);
    color: var(--red);
    border: 1px solid rgba(255, 42, 68, 0.35);
}

.email-icon {
    background: rgba(165, 138, 255, 0.12);
    color: var(--violet);
    border: 1px solid rgba(165, 138, 255, 0.3);
}

.address-icon {
    background: rgba(255, 178, 91, 0.12);
    color: #ffb25b;
    border: 1px solid rgba(255, 178, 91, 0.3);
}

.contact-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.contact-card-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9c92ad;
}

.contact-status-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #4ade80;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.contact-status-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: #b5adc4;
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card-value {
    font-size: 1.15rem;
    font-weight: 650;
    letter-spacing: -0.01em;
    color: #f7f3fd;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.footer-contact-card:hover .contact-card-value {
    color: #ffffff;
}

.address-value {
    font-size: 0.98rem;
    line-height: 1.45;
}

.contact-card-sub {
    font-size: 0.84rem;
    color: #8c829e;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.map-link {
    color: var(--lime);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.map-link:hover {
    color: #ffffff;
}

.card-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
    font-weight: 700;
}

.footer-contact-card:hover .card-arrow {
    transform: translate(3px, -3px);
    color: var(--lime);
}

/* Main Footer Navigation Grid */
.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding-bottom: 50px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-brand-col .brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-desc {
    font-size: 0.94rem;
    line-height: 1.7;
    color: #b0a6be;
    max-width: 420px;
    margin-bottom: 6px;
}

.footer-social-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #c4bed0;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-pill:hover {
    background: var(--red);
    color: #ffffff;
    border-color: var(--red);
    box-shadow: 0 4px 16px rgba(255, 42, 68, 0.45);
    transform: translateY(-2px);
}

.social-arrow {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Navigation Columns */
.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav-title {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--lime);
    margin-bottom: 4px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list a {
    color: #b5adc4;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-nav-list a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Operational Network Status Column */
.footer-status-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-status-card {
    background: rgba(25, 20, 33, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-indicator-live {
    position: relative;
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-core {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
}

.pulse-ring {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(74, 222, 128, 0.5);
    animation: ripple 2s infinite ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.status-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: #f2edf8;
    letter-spacing: 0.02em;
}

.status-detail {
    font-size: 0.82rem;
    line-height: 1.5;
    color: #9c92ad;
    margin: 0;
}

.status-metric {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #b5adc4;
    padding-top: 8px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.status-metric strong {
    color: var(--lime);
}

/* Bottom Legal & Back to Top Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: #8c829e;
}

.footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-legal a {
    color: #b5adc4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-sep {
    color: #4b415a;
}

.footer-tagline-micro {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #6a5e7d;
}

.back-to-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #c4bed0;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.22s ease;
}

.back-to-top-btn:hover {
    color: #ffffff;
    border-color: var(--red);
    background: rgba(255, 42, 68, 0.12);
    transform: translateY(-2px);
}

.top-arrow {
    font-weight: 700;
    transition: transform 0.2s ease;
}

.back-to-top-btn:hover .top-arrow {
    transform: translateY(-2px);
    color: var(--red);
}

/* Responsive Footer adjustments */
@media (max-width: 992px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .footer-brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}
.accent {
    color:var(--lime)
}
.page-heading {
    padding-block:90px 70px
}
.page-heading h1 {
    margin-bottom:30px
}
.page-heading h1 span {
    color:var(--violet)
}
.page-heading>p:not(.eyebrow) {
    font-size:1.15rem;
    max-width:640px
}
.detail-heading {
    max-width:1000px;
    font-size:clamp(3rem,6vw,6rem)
}
.detail-content {
    max-width:1000px
}
.detail-image {
    width:100%;
    max-height:550px;
    object-fit:cover;
    margin-bottom:50px;
    border-radius:12px
}
.prose {
    max-width:850px;
    font-size:1.12rem;
    color:#c5c3cc;
    line-height:1.85
}
.prose h2 {
    font-size:1.9rem;
    margin-top:35px;
    color:var(--paper)
}
.prose a {
    text-decoration:underline
}
.empty-work {
    display:flex;
    gap:45px;
    align-items:center;
    padding:45px;
    border:1px solid var(--line)
}
.empty-work>span {
    font-size:5rem;
    color:var(--violet)
}
.empty-work h2 {
    font-size:2rem
}
.contact-grid {
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:90px
}
.contact-copy>p {
    max-width:330px
}
.contact-copy h2 {
    font-size:2.5rem;
    margin-bottom:25px
}
.contact-label {
    font-size:.67rem;
    letter-spacing:.15em;
    margin:35px 0 6px
}
.contact-value {
    font-size:1.05rem;
    overflow-wrap:anywhere
}
.contact-form {
    border:1px solid var(--line);
    background:var(--panel);
    padding:35px;
    border-radius:8px
}
.form-label {
    font-size:.8rem;
    color:#d7d5de
}
.form-control,.form-select {
    background-color:#101012;
    color:var(--paper);
    border-color:#4a4754;
    border-radius:5px;
    min-height:50px;
    font-size:1rem
}
.form-control:focus,.form-select:focus {
    background-color:#0e0d11;
    color:var(--paper);
    border-color:var(--red);
    box-shadow:0 0 0 .2rem rgba(255, 42, 68, 0.25)
}
.form-control::placeholder {
    color:#8e8b97;
    font-size:.9rem
}
.form-check-label {
    font-size:.8rem;
    color:#bab8c4
}
.form-check-label a {
    text-decoration:underline
}
.form-check-input:checked {
    background-color:var(--red);
    border-color:var(--red)
}
.honeypot {
    position:absolute;
    left:-10000px;
    width:1px;
    height:1px;
    overflow:hidden
}
.animate-reveal {
    opacity:0;
    transform:translateY(20px);
    transition:opacity .55s,transform .55s
}
.animate-reveal.visible {
    opacity:1;
    transform:none
}
.skip-link {
    position:absolute;
    top:-80px;
    left:20px;
    background:var(--red);
    color:#ffffff;
    padding:10px;
    z-index:100
}
.skip-link:focus {
    top:10px
}
.pagination {
    --bs-pagination-bg:#19191d;
    --bs-pagination-color:var(--paper);
    --bs-pagination-border-color:#45424d;
    --bs-pagination-active-bg:#7561af;
    --bs-pagination-active-border-color:#7561af;
    --bs-pagination-disabled-bg:#29272d
}
@media(min-width:1500px) {
    .hero {
        min-height:710px
    }
}
@media(max-width:1199px) {
    .container-wide {
        width:calc(100% - 60px)
    }
    .hero {
        min-height:600px
    }
    .hero h1 {
        font-size:6.8vw
    }
    .hero-actions {
        gap:15px
    }
    .hero-actions .button {
        padding:15px 18px;
        font-size:.8rem
    }
    .hero-actions .text-link {
        font-size:.8rem
    }
    .row-wrap,.contact-grid {
        gap:50px
    }
    .nav-cta {
        margin-left:0
    }
    .navbar-nav {
        gap:15px!important
    }
    .service-card {
        padding:25px
    }
    .section {
        padding-block:85px
    }
}
@media(max-width:991px) {
    .navbar-collapse {
        padding-top:25px
    }
    .navbar-nav {
        align-items:start!important;
        padding-bottom:10px
    }
    .hero {
        padding-top:55px;
        min-height:560px
    }
    .hero-description {
        font-size:.92rem
    }
    .hero-art {
        width:115%;
        margin-left:-10%
    }
    .art-caption {
        font-size:.62rem;
        padding:10px;
        bottom:10%
    }
    .art-label {
        font-size:.53rem
    }
    .hero-footnote {
        margin-top:30px
    }
    .row-wrap {
        gap:40px
    }
    .service-grid {
        grid-template-columns:repeat(2,minmax(0,1fr))
    }
    .section-heading {
        align-items:start;
        flex-direction:column;
        gap:22px
    }
    .process-grid {
        gap:25px
    }
    .about-poster {
        min-height:360px;
        padding:25px
    }
    .about-poster>div {
        font-size:2.5rem
    }
    .poster-cross {
        font-size:4rem
    }
    .poster-bottom {
        left:25px
    }
    .about-copy .eyebrow {
        font-size:.64rem
    }
    .contact-grid {
        gap:40px;
        grid-template-columns:.7fr 1fr
    }
    .contact-form {
        padding:25px
    }
    .footer-links {
        gap:16px
    }
    .project-grid {
        grid-template-columns:repeat(2,minmax(0,1fr))
    }
}
@media(max-width:767px) {
    .container-wide {
        width:calc(100% - 40px)
    }
    .navbar {
        min-height:85px
    }
    .brand {
        font-size:1.35rem
    }
    .hero {
        grid-template-columns:1fr;
        padding-block:45px 10px;
        min-height:auto
    }
    .hero h1 {
        font-size:clamp(3.5rem,11.7vw,5.7rem)
    }
    .hero-description {
        max-width:490px
    }
    .hero-art {
        width:min(100%,500px);
        margin:-10px auto 0;
        aspect-ratio:1.1
    }
    .hero-copy {
        padding-top:0
    }
    .hero .eyebrow {
        font-size:.61rem
    }
    .hero-actions {
        gap:20px
    }
    .hero-actions .button {
        font-size:.81rem;
        padding:16px 18px
    }
    .hero-footnote {
        margin-top:25px
    }
    .art-label-top {
        top:10%;
        right:10%
    }
    .art-caption {
        font-size:.65rem;
        bottom:12%;
        left:8%
    }
    .ticker-track {
        font-size:1.6rem;
        gap:25px
    }
    .ticker {
        padding:14px 0
    }
    .section {
        padding-block:65px
    }
    .section-heading {
        margin-bottom:30px
    }
    .section-heading .eyebrow {
        margin-bottom:18px
    }
    .row-wrap {
        grid-template-columns:1fr;
        gap:55px
    }
    .about-poster {
        min-height:370px;
        max-width:520px;
        width:95%;
        margin-inline:auto
    }
    .about-poster>div {
        font-size:2.95rem
    }
    .about-copy {
        max-width:570px
    }
    .process-grid {
        grid-template-columns:1fr;
        gap:30px
    }
    .process-card {
        display:grid;
        grid-template-columns:45px 1fr;
        column-gap:15px
    }
    .step-number {
        grid-row:1/3;
        margin:0
    }
    .process-card p {
        grid-column:2;
        max-width:none
    }
    .process-card h3 {
        font-size:1.6rem;
        margin-bottom:12px
    }
    .footer-cta {
        padding-block:45px 55px;
        gap:20px
    }
    .footer-cta .eyebrow {
        font-size:.6rem
    }
    .circle-link {
        width:115px;
        height:115px;
        font-size:.65rem
    }
    .circle-link>span:first-child {
        font-size:2rem
    }
    .footer-top {
        flex-wrap:wrap
    }
    .footer-links {
        width:100%
    }
    .footer-bottom {
        align-items:start;
        flex-direction:column;
        gap:15px
    }
    .page-heading {
        padding-block:55px 40px
    }
    .page-heading h1 {
        font-size:clamp(3.1rem,10vw,4.8rem)
    }
    .contact-grid {
        grid-template-columns:1fr;
        gap:35px
    }
    .contact-copy h2 {
        font-size:2rem
    }
    .contact-form {
        padding:23px 20px
    }
    .detail-heading {
        overflow-wrap:break-word
    }
    .empty-work {
        padding:28px;
        gap:20px;
        align-items:start;
        flex-direction:column
    }
    .empty-work>span {
        font-size:3rem
    }
    .project-grid {
        grid-template-columns:1fr
    }
    .service-card h3 {
        font-size:1.35rem
    }
    .service-card {
        padding:21px;
        min-height:285px
    }
    .service-card p {
        font-size:.83rem
    }
    .service-top {
        margin-bottom:25px
    }
    .service-bottom {
        font-size:.7rem
    }
    .client-grid {
        gap:25px
    }
}
@media(max-width:430px) {
    .service-grid {
        grid-template-columns:1fr
    }
    .service-card {
        min-height:auto;
        padding:25px
    }
    .service-card h3 {
        font-size:1.55rem
    }
    .service-top {
        margin-bottom:22px
    }
    .service-card p {
        font-size:.9rem
    }
    .hero-actions {
        gap:18px
    }
    .hero-actions .text-link {
        font-size:.75rem
    }
    .hero h1 {
        font-size:11.6vw
    }
    .hero .eyebrow {
        letter-spacing:.08em
    }
    .footer-cta h2 {
        font-size:3.2rem
    }
    .footer-cta .eyebrow {
        max-width:180px
    }
    .circle-link {
        width:100px;
        height:100px
    }
}
@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior:auto
    }
    .ticker-track {
        animation:none
    }
    .animate-reveal {
        opacity:1;
        transform:none;
        transition:none
    }
    .button,.circle-link {
        transition:none
    }
}

/* Detailed service catalogue and distribution content. */
.expertise-nav { display:flex; flex-wrap:wrap; gap:10px; margin:0 0 45px; }
.expertise-nav a { padding:10px 15px; border:1px solid #55505f; border-radius:30px; font-size:.85rem; }
.expertise-nav a:hover { background:var(--lime); color:var(--ink); }
.offering-group { scroll-margin-top:25px; margin-top:55px; }
.group-heading { font-size:1.5rem; letter-spacing:-.025em; margin-bottom:22px; display:flex; align-items:center; gap:18px; }
.group-heading>span { color:var(--violet); font-size:.85rem; letter-spacing:.05em; }
.offering-grid, .protection-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.offering-card { background:var(--panel); border:1px solid #39343f; border-radius:12px; padding:30px; display:flex; flex-direction:column; }
.offering-card:hover { border-color:#8870b3; }
.offering-index { display:flex; justify-content:space-between; color:var(--violet); font-size:.85rem; margin-bottom:28px; }
.offering-index>span { font-size:1.3rem; }
.offering-card h3 { font-size:1.6rem; line-height:1.2; margin-bottom:18px; }
.offering-card>p { font-size:1rem; line-height:1.8; margin-bottom:25px; }
.offering-card h4 { border-top:1px solid #49414f; padding-top:23px; font-size:.95rem; font-weight:600; margin-bottom:15px; }
.feature-list { list-style:none; margin:0; padding:0; }
.feature-list li { position:relative; padding:10px 0 10px 25px; color:#d0cad8; font-size:.94rem; line-height:1.65; border-bottom:1px solid #332e3b; overflow-wrap:anywhere; }
.feature-list li:before { content:'✓'; position:absolute; left:0; top:10px; color:var(--lime); }
.offering-link { padding-top:30px; margin-top:auto; display:flex; justify-content:space-between; gap:10px; color:var(--violet); font-size:.88rem; }
.protection-section { background:#211b2a; }
.protection-card { border:1px solid #52425f; border-radius:12px; padding:30px; }
.protection-number { display:block; color:var(--violet); font-size:.7rem; letter-spacing:.08em; margin-bottom:30px; }
.protection-card h3 { font-size:1.5rem; line-height:1.2; margin-bottom:20px; }
.protection-card p { margin:0; color:#c5bbd0; font-size:1rem; line-height:1.85; }
.platform-intro { max-width:800px; font-size:1.1rem; line-height:1.85; margin:28px 0 35px; }
.platform-grid { display:flex; flex-wrap:wrap; gap:14px; }
.platform-pill { display:flex; align-items:center; gap:10px; border:1px solid #57515f; background:var(--panel); padding:15px 23px; border-radius:40px; font-size:1rem; }
.platform-pill img { height:26px; width:26px; object-fit:contain; }
.detail-features { margin-top:35px; max-width:800px; }
.detail-features h2 { font-size:1.8rem; margin-bottom:20px; }
@media(max-width:991px) { .offering-grid,.protection-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } .offering-card,.protection-card { padding:24px; } }
@media(max-width:600px) { .offering-grid,.protection-grid { grid-template-columns:1fr; } .group-heading { font-size:1.35rem; line-height:1.3; } .expertise-nav a { font-size:.82rem; padding:9px 13px; } .platform-pill { font-size:.9rem; padding:12px 17px; } .platform-grid { gap:10px; } }

/* Service Card & Offering Card Clickable Enhancements */
.offering-card-clickable {
    cursor:pointer;
    transition:transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
    user-select:none;
}
.offering-card-clickable:hover {
    border-color:#9f86cc;
    background:#201b27;
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,0.35);
}
.offering-card-clickable:focus-visible {
    outline:3px solid var(--lime);
    outline-offset:3px;
}
.offering-arrow {
    font-size:1.3rem;
    transition:transform .2s ease, color .2s ease;
}
.offering-card-clickable:hover .offering-arrow {
    transform:translate(3px, -3px);
    color:var(--lime);
}
.offering-card-clickable:hover .offering-link {
    color:var(--lime);
}
.offering-actions {
    margin-top:auto;
    padding-top:24px;
}
.feature-more {
    color:var(--violet) !important;
    font-size:.88rem !important;
    font-weight:500;
}
.feature-more:before {
    content:'+' !important;
    color:var(--violet) !important;
}

/* Service Detail Modal */
.service-modal .modal-content {
    background:#16161a;
    border:1px solid #3d3548;
    border-radius:18px;
    box-shadow:0 24px 70px rgba(0,0,0,0.85);
    color:var(--paper);
    overflow:hidden;
}
.service-modal .modal-header {
    border-bottom:1px solid #2f2a36;
    padding:28px 34px 20px;
    align-items:flex-start;
}
.service-modal-badge {
    display:inline-block;
    font-size:.75rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.12em;
    color:var(--violet);
    margin-bottom:8px;
    background:#261f32;
    padding:4px 12px;
    border-radius:20px;
    border:1px solid #433758;
}
.service-modal .modal-title {
    font-size:clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight:700;
    letter-spacing:-.03em;
    line-height:1.15;
    margin:0;
    color:#fff;
}
.service-modal .btn-close {
    filter:invert(1) grayscale(100%);
    opacity:.7;
    transition:opacity .2s;
    margin-top:4px;
}
.service-modal .btn-close:hover {
    opacity:1;
}
.service-modal .modal-body {
    padding:28px 34px;
    max-height:68vh;
    overflow-y:auto;
}
.service-modal-summary {
    font-size:1.08rem;
    line-height:1.75;
    color:#e4e0ec;
    margin-bottom:20px;
    font-weight:450;
}
.service-modal-body {
    font-size:.96rem;
    line-height:1.8;
    color:var(--muted);
    margin-bottom:28px;
}
.service-modal-features-wrapper {
    background:#1d1824;
    border:1px solid #362e42;
    border-radius:12px;
    padding:22px 24px;
    margin-top:20px;
}
.service-modal-features-wrapper h4 {
    font-size:1rem;
    font-weight:600;
    letter-spacing:-.01em;
    color:#fff;
    margin:0 0 14px;
}
.service-modal-features-wrapper .feature-list li {
    border-bottom-color:#2a2334;
}
.service-modal .modal-footer {
    border-top:1px solid #2f2a36;
    padding:20px 34px;
    display:flex;
    justify-content:flex-start;
    gap:14px;
    background:#131316;
}
@media(max-width:576px) {
    .service-modal .modal-header,
    .service-modal .modal-body,
    .service-modal .modal-footer {
        padding-left:20px;
        padding-right:20px;
    }
    .service-modal .modal-footer {
        flex-direction:column;
    }
    .service-modal .modal-footer .button {
        width:100%;
        text-align:center;
    }
}

/* ==========================================================================
   Service & Project Detail Page Redesign (World-Class Agency Layout)
   ========================================================================== */

.detail-hero-section {
    padding:50px 0 65px;
    background:radial-gradient(ellipse at 80% 20%, rgba(165,138,255,0.12) 0%, transparent 65%);
    border-bottom:1px solid var(--line);
    position:relative;
}
.detail-breadcrumb {
    display:flex;
    align-items:center;
    gap:12px;
    font-size:.88rem;
    margin-bottom:34px;
}
.breadcrumb-back {
    color:var(--violet);
    font-weight:600;
    transition:color .2s;
    display:inline-flex;
    align-items:center;
    gap:6px;
}
.breadcrumb-back:hover {
    color:var(--lime);
}
.breadcrumb-separator {
    color:#585263;
}
.breadcrumb-current {
    color:#d0cbd9;
    font-weight:500;
}
.detail-header-grid {
    display:grid;
    grid-template-columns:1.6fr 1fr;
    gap:45px;
    align-items:center;
}
.detail-pill-badge {
    display:inline-block;
    font-size:.74rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.12em;
    color:var(--violet);
    background:#251e30;
    border:1px solid #4a3d5e;
    padding:6px 14px;
    border-radius:30px;
    margin-bottom:18px;
}
.detail-hero-title {
    font-size:clamp(2.3rem, 4.2vw, 3.8rem);
    line-height:1.1;
    letter-spacing:-.04em;
    color:var(--paper);
    margin-bottom:20px;
}
.detail-hero-lead {
    font-size:1.18rem;
    line-height:1.75;
    color:#c9c4d4;
    max-width:680px;
    margin-bottom:32px;
}
.detail-hero-actions {
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}
.detail-stats-card {
    background:var(--panel);
    border:1px solid #3e364a;
    border-radius:20px;
    padding:34px;
    box-shadow:0 18px 45px rgba(0,0,0,0.45);
}
.stats-card-header {
    display:flex;
    align-items:center;
    gap:10px;
    font-size:.78rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.1em;
    color:var(--violet);
    margin-bottom:22px;
    padding-bottom:16px;
    border-bottom:1px solid #2f2937;
}
.stats-card-header .stats-icon {
    color:var(--lime);
    font-size:1.1rem;
}
.stats-list {
    display:flex;
    flex-direction:column;
    gap:18px;
}
.stat-item {
    display:flex;
    flex-direction:column;
}
.stat-number {
    font-size:1.8rem;
    font-weight:700;
    color:var(--lime);
    line-height:1.1;
    letter-spacing:-.02em;
}
.stat-label {
    font-size:.85rem;
    color:var(--muted);
    margin-top:3px;
}
.stats-footer {
    margin-top:22px;
    padding-top:16px;
    border-top:1px solid #2f2937;
    font-size:.82rem;
    color:#938e9d;
}

/* Media section */
.detail-media-section {
    margin-top:45px;
    margin-bottom:25px;
}
.detail-media-wrapper {
    border-radius:18px;
    overflow:hidden;
    border:1px solid #3c3447;
    max-height:520px;
}
.detail-hero-image {
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Detail Content Layout & Sidebar */
.detail-body-section {
    padding-top:70px;
}
.detail-content-layout {
    display:grid;
    grid-template-columns:1.75fr 1fr;
    gap:60px;
    align-items:start;
}
.detail-main-prose {
    min-width:0;
}
.prose-heading-group {
    margin-bottom:28px;
}
.detail-prose-content {
    font-size:1.08rem;
    line-height:1.85;
    color:#d8d3e2;
    margin-bottom:45px;
}
.detail-process-block {
    background:#18151f;
    border:1px solid #342b3e;
    border-radius:18px;
    padding:34px 36px;
    margin-top:35px;
}
.process-block-title {
    font-size:1.45rem;
    margin-bottom:24px;
    color:var(--paper);
}
.detail-steps-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
}
.detail-step-card {
    display:flex;
    flex-direction:column;
}
.step-badge {
    width:38px;
    height:38px;
    border-radius:50%;
    background:var(--panel);
    border:1px solid #4a3d5e;
    color:var(--violet);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:.85rem;
    font-weight:700;
    margin-bottom:14px;
}
.detail-step-card h4 {
    font-size:1.05rem;
    font-weight:600;
    color:var(--paper);
    margin-bottom:8px;
}
.detail-step-card p {
    font-size:.86rem;
    line-height:1.65;
    color:var(--muted);
    margin:0;
}

/* Sticky Sidebar */
.detail-sidebar {
    position:sticky;
    top:120px;
}
.detail-sticky-card {
    background:var(--panel);
    border:1px solid #3f364c;
    border-radius:20px;
    padding:34px;
    box-shadow:0 22px 52px rgba(0,0,0,0.5);
}
.sticky-tag {
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.12em;
    color:var(--violet);
    display:block;
    margin-bottom:12px;
}
.detail-sticky-card h3 {
    font-size:1.45rem;
    margin-bottom:10px;
    color:var(--paper);
}
.detail-sticky-card>p {
    font-size:.92rem;
    line-height:1.65;
    margin-bottom:24px;
}
.sidebar-details-list {
    border-top:1px solid #312b39;
    padding-top:20px;
    display:flex;
    flex-direction:column;
    gap:15px;
}
.sidebar-detail-row {
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:.88rem;
}
.detail-row-label {
    color:var(--muted);
}
.detail-row-value {
    color:var(--paper);
    font-weight:500;
    text-align:right;
}
.text-lime {
    color:var(--lime) !important;
}

/* Key Deliverables & Features Grid */
.detail-features-section {
    background:#16131c;
    border-top:1px solid #2d2636;
    border-bottom:1px solid #2d2636;
    padding:90px 0;
}
.deliverables-grid {
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:22px;
    margin-top:45px;
}
.deliverable-card {
    background:var(--panel);
    border:1px solid #3a3245;
    border-radius:16px;
    padding:30px;
    transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.deliverable-card:hover {
    transform:translateY(-4px);
    border-color:#9f85cb;
    box-shadow:0 14px 36px rgba(0,0,0,0.45);
}
.deliverable-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:22px;
}
.deliverable-check {
    width:34px;
    height:34px;
    border-radius:10px;
    background:rgba(213,255,96,0.12);
    color:var(--lime);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:1.1rem;
    border:1px solid rgba(213,255,96,0.25);
}
.deliverable-number {
    font-size:.78rem;
    color:var(--violet);
    font-weight:600;
    letter-spacing:.05em;
}
.deliverable-card h3 {
    font-size:1.28rem;
    line-height:1.3;
    color:var(--paper);
    margin-bottom:10px;
}
.deliverable-card p {
    font-size:.88rem;
    line-height:1.65;
    color:var(--muted);
    margin:0;
}

/* Related section */
.related-section {
    padding-top:85px;
}
.related-grid {
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:24px;
    margin-top:40px;
}
.related-card {
    background:var(--panel);
    border:1px solid #383042;
    border-radius:16px;
    padding:32px;
    display:flex;
    flex-direction:column;
    transition:transform .25s ease, border-color .25s ease, background .25s ease;
    text-decoration:none;
}
.related-card:hover {
    transform:translateY(-3px);
    border-color:var(--violet);
    background:#1f1927;
    color:var(--paper);
}
.related-card-top {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
}
.related-category {
    font-size:.75rem;
    font-weight:700;
    color:var(--violet);
    text-transform:uppercase;
    letter-spacing:.08em;
}
.related-arrow {
    font-size:1.3rem;
    color:var(--violet);
    transition:transform .2s ease, color .2s ease;
}
.related-card:hover .related-arrow {
    transform:translate(3px, -3px);
    color:var(--lime);
}
.related-card h3 {
    font-size:1.35rem;
    line-height:1.25;
    margin-bottom:12px;
}
.related-card p {
    font-size:.9rem;
    line-height:1.7;
    color:var(--muted);
    margin-bottom:24px;
}
.related-bottom-link {
    margin-top:auto;
    font-size:.82rem;
    font-weight:600;
    color:var(--lime);
    display:inline-flex;
    align-items:center;
    gap:6px;
}

/* Bottom CTA Banner */
.detail-cta-banner {
    background:linear-gradient(135deg, #241d2f 0%, #15141b 100%);
    border:1px solid #4a3d5e;
    border-radius:24px;
    padding:70px 50px;
    text-align:center;
    margin-top:35px;
    box-shadow:0 24px 60px rgba(0,0,0,0.55);
}
.cta-banner-content {
    max-width:740px;
    margin-inline:auto;
}
.cta-mini-pill {
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.14em;
    color:var(--lime);
    background:rgba(213,255,96,0.12);
    border:1px solid rgba(213,255,96,0.25);
    padding:6px 16px;
    border-radius:30px;
    display:inline-block;
    margin-bottom:22px;
}
.detail-cta-banner h2 {
    font-size:clamp(2.1rem, 3.8vw, 3.2rem);
    line-height:1.12;
    letter-spacing:-.035em;
    color:#fff;
    margin-bottom:18px;
}
.detail-cta-banner h2 span {
    color:var(--violet);
}
.detail-cta-banner p {
    font-size:1.1rem;
    line-height:1.75;
    color:#c4bfd1;
    margin-bottom:34px;
}
.cta-actions {
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

/* Detail Page Responsive Breakpoints */
@media(max-width:991px) {
    .detail-header-grid {
        grid-template-columns:1fr;
        gap:35px;
    }
    .detail-content-layout {
        grid-template-columns:1fr;
        gap:45px;
    }
    .detail-sidebar {
        position:static;
    }
    .detail-steps-grid {
        grid-template-columns:1fr;
        gap:20px;
    }
    .deliverables-grid,
    .related-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
    .detail-cta-banner {
        padding:50px 30px;
    }
}
@media(max-width:600px) {
    .deliverables-grid,
    .related-grid {
        grid-template-columns:1fr;
    }
    .detail-hero-section {
        padding:35px 0 45px;
    }
    .detail-hero-actions {
        flex-direction:column;
    }
    .detail-hero-actions .button {
        width:100%;
        text-align:center;
    }
    .detail-cta-banner .cta-actions {
        flex-direction:column;
    }
    .detail-cta-banner .cta-actions .button {
        width:100%;
        text-align:center;
    }
}

/* ==========================================================================
   Why Choose Us Section Styles
   ========================================================================== */

.why-choose-section {
    padding:95px 0;
    position:relative;
}
.why-choose-grid {
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:24px;
    margin-top:48px;
}
.why-card {
    background:var(--panel);
    border:1px solid #3c3447;
    border-radius:20px;
    padding:42px 28px 36px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    transition:transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
    box-shadow:0 12px 32px rgba(0,0,0,0.35);
    position:relative;
}
.why-card:hover {
    transform:translateY(-6px);
    border-color:#a58aff;
    background:#201b2a;
    box-shadow:0 20px 48px rgba(0,0,0,0.5);
}
.why-icon-box {
    width:72px;
    height:72px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:26px;
    transition:transform .25s ease, box-shadow .25s ease;
}
.why-icon-box.icon-coral {
    background:rgba(255, 77, 90, 0.12);
    border:1px solid rgba(255, 77, 90, 0.28);
    color:#ff4d5a;
}
.why-card:hover .why-icon-box {
    transform:scale(1.08);
    box-shadow:0 0 26px rgba(255, 77, 90, 0.35);
}
.why-card h3 {
    font-size:1.32rem;
    font-weight:700;
    letter-spacing:-.025em;
    margin-bottom:14px;
    color:var(--paper);
}
.why-card p {
    font-size:.92rem;
    line-height:1.7;
    color:#b9b4c4;
    margin:0;
}

@media(max-width:1100px) {
    .why-choose-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:22px;
    }
}
@media(max-width:600px) {
    .why-choose-grid {
        grid-template-columns:1fr;
    }
    .why-choose-section {
        padding:60px 0;
    }
    .why-card {
        padding:34px 24px;
    }
}

/* ==========================================================================
   FAQ Section & Page Styles (Modern Knowledge Base UI)
   ========================================================================== */

.faq-page-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 80px;
}

.faq-hero-box {
    text-align: center;
    margin-bottom: 44px;
}

.faq-hero-box .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--red);
    background: rgba(255, 42, 68, 0.1);
    border: 1px solid rgba(255, 42, 68, 0.28);
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
}

.faq-hero-box h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.12;
    margin-bottom: 18px;
    color: var(--paper);
}

.faq-hero-box h1 span {
    color: var(--violet);
}

.faq-hero-lead {
    font-size: 1.12rem;
    line-height: 1.7;
    color: #b5adc4;
    max-width: 680px;
    margin: 0 auto 34px auto;
}

/* Search Console */
.faq-search-console {
    position: relative;
    max-width: 740px;
    margin: 0 auto 30px auto;
}

.faq-search-bar {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(20, 16, 22, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 42, 68, 0.25);
    border-radius: 50px;
    padding: 6px 14px 6px 20px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.faq-search-bar:focus-within {
    border-color: var(--red);
    background: rgba(24, 18, 22, 0.96);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(255, 42, 68, 0.25);
}

.faq-search-icon-svg {
    flex-shrink: 0;
    color: var(--violet);
    margin-right: 12px;
    opacity: 0.85;
    transition: color 0.2s ease, transform 0.2s ease;
}

.faq-search-bar:focus-within .faq-search-icon-svg {
    color: var(--lime);
    transform: scale(1.08);
}

.faq-search-input-modern {
    flex: 1;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: var(--paper) !important;
    font-size: 1.05rem !important;
    font-weight: 500;
    padding: 12px 0 !important;
}

.faq-search-input-modern::placeholder {
    color: #7a708a;
    font-weight: 400;
}

.faq-search-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-search-clear {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #c0b8ce;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-search-clear:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.faq-kbd-hint {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #8c829e;
    font-family: inherit;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    user-select: none;
    pointer-events: none;
}

.faq-status-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.86rem;
    color: #9b91ad;
    padding: 8px 12px 0 12px;
}

/* Category Filter Pills */
.faq-filter-pills-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 38px;
}

.faq-filter-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(28, 22, 38, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #c4bed0;
    padding: 9px 18px;
    border-radius: 40px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.faq-filter-pill-btn:hover {
    background: rgba(43, 34, 58, 0.9);
    border-color: var(--violet);
    color: #ffffff;
    transform: translateY(-1px);
}

.faq-pill-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    color: #b5adc4;
    transition: all 0.22s ease;
}

.faq-filter-pill-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(255, 42, 68, 0.4);
    transform: translateY(-1px);
}

.faq-filter-pill-btn.active .faq-pill-count {
    background: rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

/* Accordion Container & Cards */
.faq-accordion-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: linear-gradient(145deg, #181419 0%, #110e12 100%);
    border: 1px solid #362227;
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.faq-item:hover {
    border-color: #ff2a44;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.faq-item.is-open {
    border-color: rgba(255, 42, 68, 0.45);
    background: linear-gradient(145deg, #1d1417 0%, #120e11 100%);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 42, 68, 0.15);
}

.faq-trigger {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--paper);
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-trigger:hover {
    background: rgba(255, 42, 68, 0.05);
}

.faq-trigger-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.faq-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--violet);
}

.faq-category-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 8px var(--lime);
}

.faq-question-text {
    font-size: 1.22rem;
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1.38;
    color: #f4effc;
    transition: color 0.2s ease;
}

.faq-trigger:hover .faq-question-text {
    color: #ffffff;
}

/* Circular Toggle Icon Button */
.faq-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-chevron-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-trigger:not(.collapsed) .faq-toggle-btn {
    background: var(--red);
    border-color: var(--red);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(255, 42, 68, 0.4);
}

.faq-trigger:not(.collapsed) .faq-chevron-icon {
    transform: rotate(180deg);
}

.faq-trigger:not(.collapsed) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* FAQ Answer Body */
.faq-body {
    padding: 26px 30px 30px 30px;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #d1cbdc;
    background: rgba(18, 14, 24, 0.6);
}

.faq-body-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
}

.faq-body-hint {
    color: #8c829e;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.faq-body-action-link {
    color: var(--lime);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.faq-body-action-link:hover {
    color: #ffffff;
    transform: translateX(2px);
}

/* Empty State Card */
.faq-empty-state {
    text-align: center;
    background: linear-gradient(145deg, #1a1523 0%, #131017 100%);
    border: 1px solid #332b3d;
    border-radius: 20px;
    padding: 60px 30px;
    max-width: 640px;
    margin: 20px auto;
}

.faq-empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(165, 138, 255, 0.1);
    border: 1px solid rgba(165, 138, 255, 0.25);
    color: var(--violet);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.faq-empty-state h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--paper);
    margin-bottom: 10px;
}

.faq-empty-state p {
    color: #a89eb6;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 440px;
    margin: 0 auto 24px auto;
}

.faq-empty-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Home FAQ Section Specifics */
.home-faq-section {
    padding: 100px 0;
    border-top: 1px solid var(--line);
}

.home-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .faq-page-wrapper {
        padding-top: 20px;
        padding-bottom: 50px;
    }
    .faq-hero-box h1 {
        font-size: 2.2rem;
    }
    .faq-hero-lead {
        font-size: 1rem;
    }
    .faq-search-console {
        margin-bottom: 24px;
    }
    .faq-search-bar {
        padding: 4px 10px 4px 16px;
    }
    .faq-kbd-hint {
        display: none;
    }
    .faq-filter-pills-bar {
        gap: 8px;
        margin-bottom: 28px;
    }
    .faq-filter-pill-btn {
        padding: 7px 14px;
        font-size: 0.82rem;
    }
    .faq-trigger {
        padding: 18px 20px;
        gap: 14px;
    }
    .faq-question-text {
        font-size: 1.08rem;
    }
    .faq-toggle-btn {
        width: 34px;
        height: 34px;
    }
    .faq-chevron-icon {
        width: 16px;
        height: 16px;
    }
    .faq-body {
        padding: 20px 20px 24px;
        font-size: 0.98rem;
    }
}

/* ==========================================================================
   WhatsApp Floating Quick-Chat & Widget
   ========================================================================== */
.wa-floating-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    pointer-events: none;
}

.wa-floating-btn {
    pointer-events: auto;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2fe675 0%, #1da851 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    text-decoration: none;
}

.wa-floating-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.wa-floating-btn:focus-visible {
    outline: 3px solid #25D366;
    outline-offset: 3px;
}

.wa-pulse-wave {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.65);
    animation: waPulse 2.4s infinite ease-out;
    pointer-events: none;
}

@keyframes waPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.28);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.wa-icon-svg {
    fill: currentColor;
    transition: transform 0.25s ease;
}

.wa-floating-btn:hover .wa-icon-svg {
    transform: rotate(-6deg) scale(1.06);
}

.wa-tooltip-pill {
    position: absolute;
    right: 74px;
    background: #181422;
    color: #ffffff;
    border: 1px solid #3c324c;
    padding: 7px 15px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.wa-floating-btn:hover .wa-tooltip-pill {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Chat Popover Card */
.wa-chat-popup {
    pointer-events: auto;
    width: 330px;
    max-width: calc(100vw - 40px);
    background: #17131e;
    border: 1px solid #3d344d;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(165, 138, 255, 0.08);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.wa-chat-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-popup-header {
    background: linear-gradient(135deg, #1f1418 0%, #110e12 100%);
    border-bottom: 1px solid #2f1c22;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-popup-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #251216;
    border: 1px solid #4a1d25;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--red);
    flex-shrink: 0;
}

.wa-status-online {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 11px;
    height: 11px;
    background: #25D366;
    border: 2px solid #17131e;
    border-radius: 50%;
}

.wa-popup-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.wa-popup-meta strong {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wa-popup-meta small {
    color: #9d93ad;
    font-size: 0.74rem;
    font-weight: 400;
}

.wa-popup-close {
    background: transparent;
    border: none;
    color: #7b718c;
    cursor: pointer;
    padding: 4px 6px;
    font-size: 0.95rem;
    line-height: 1;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.wa-popup-close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.wa-popup-body {
    padding: 20px 18px;
    background: radial-gradient(circle at top right, rgba(255, 42, 68, 0.04) 0%, transparent 70%), #121014;
}

.wa-msg-bubble {
    background: #1e1518;
    border: 1px solid #3d2026;
    border-radius: 14px 14px 14px 4px;
    padding: 14px 16px;
    position: relative;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.wa-msg-bubble p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #ded9e7;
}

.wa-msg-bubble strong {
    color: var(--red);
}

.wa-msg-time {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: #7f7491;
    margin-top: 6px;
}

.wa-popup-footer {
    padding: 14px 18px 18px;
    background: #17131e;
    border-top: 1px solid #282132;
}

.wa-start-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    background: #25D366;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.wa-start-chat-btn:hover {
    background: #22bf5b;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

.wa-btn-arrow {
    transition: transform 0.2s ease;
}

.wa-start-chat-btn:hover .wa-btn-arrow {
    transform: translate(2px, -2px);
}

@media (max-width: 576px) {
    .wa-floating-container {
        bottom: 18px;
        right: 18px;
    }
    .wa-floating-btn {
        width: 54px;
        height: 54px;
    }
    .wa-floating-btn .wa-icon-svg {
        width: 26px;
        height: 26px;
    }
    .wa-tooltip-pill {
        display: none;
    }
    .wa-chat-popup {
        width: calc(100vw - 36px);
        right: 0;
    }
}

/* ==========================================================================
   Site Preloader / Screen Loader
   ========================================================================== */
.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #0d0a12;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: all;
}

.site-preloader.is-loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 22px;
    max-width: 360px;
    padding: 24px;
}

.preloader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.preloader-logo-img {
    max-height: 52px;
    width: auto;
    object-fit: contain;
    animation: preloaderBreathing 2s ease-in-out infinite alternate;
}

.preloader-mark-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: radial-gradient(circle at 30% 30%, #2e1419 0%, #140f12 100%);
    border: 1px solid #571e27;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65), 0 0 25px rgba(255, 42, 68, 0.25);
    animation: preloaderPulse 2.2s ease-in-out infinite alternate;
}

.preloader-mark {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.04em;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.preloader-star {
    color: var(--red);
    display: inline-block;
    animation: preloaderSpin 3.5s linear infinite;
    margin-left: 2px;
}

.preloader-name {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
}

/* Sound Equalizer Wave Bars */
.preloader-equalizer {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 32px;
}

.preloader-equalizer .eq-bar {
    display: inline-block;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--red) 0%, #ff6b7e 100%);
    animation: eqBounce 1s ease-in-out infinite alternate;
}

.preloader-equalizer .eq-1 { height: 14px; animation-delay: 0.1s; }
.preloader-equalizer .eq-2 { height: 26px; animation-delay: 0.35s; }
.preloader-equalizer .eq-3 { height: 32px; animation-delay: 0.15s; }
.preloader-equalizer .eq-4 { height: 20px; animation-delay: 0.45s; }
.preloader-equalizer .eq-5 { height: 16px; animation-delay: 0.25s; }

/* Progress Track and Bar */
.preloader-track {
    width: 170px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.preloader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, #ff6b7e, var(--red), transparent);
    animation: preloaderProgress 1.4s ease-in-out infinite;
    border-radius: 6px;
}

.preloader-caption {
    margin-top: -6px;
}

.preloader-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #7d728e;
}

@keyframes preloaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes preloaderBreathing {
    0% { transform: scale(0.96); opacity: 0.85; }
    100% { transform: scale(1.02); opacity: 1; }
}

@keyframes preloaderPulse {
    0% { transform: scale(0.98); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55), 0 0 15px rgba(255, 42, 68, 0.2); }
    100% { transform: scale(1.03); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65), 0 0 30px rgba(255, 42, 68, 0.35); }
}

@keyframes eqBounce {
    0% { transform: scaleY(0.3); opacity: 0.5; }
    100% { transform: scaleY(1); opacity: 1; }
}

@keyframes preloaderProgress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@media (prefers-reduced-motion: reduce) {
    .site-preloader {
        display: none !important;
    }
}

/* ==========================================================================
   Creative Motion, Scroll Reveals & Animation Effects
   ========================================================================== */

/* Background Ambient Aura Orbs */
body::before {
    content: '';
    position: fixed;
    top: -180px;
    right: -180px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 42, 68, 0.08) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
    animation: auraFloat 16s ease-in-out infinite alternate;
}

body::after {
    content: '';
    position: fixed;
    bottom: -160px;
    left: -160px;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 75, 95, 0.05) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
    animation: auraFloat2 18s ease-in-out infinite alternate;
}

@keyframes auraFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-70px, 90px) scale(1.18); }
}

@keyframes auraFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, -70px) scale(1.14); }
}

/* Global Scroll-Driven Smooth Reveal */
.animate-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

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

/* Stagger entrance delays across grid cards */
.service-grid .service-card:nth-child(1),
.why-choose-grid .why-card:nth-child(1),
.process-grid .process-card:nth-child(1),
.offering-grid .offering-card:nth-child(1),
.protection-grid .protection-card:nth-child(1),
.deliverables-grid .deliverable-card:nth-child(1),
.related-grid .related-card:nth-child(1),
.footer-contact-grid .footer-contact-card:nth-child(1) {
    transition-delay: 0.04s;
}

.service-grid .service-card:nth-child(2),
.why-choose-grid .why-card:nth-child(2),
.process-grid .process-card:nth-child(2),
.offering-grid .offering-card:nth-child(2),
.protection-grid .protection-card:nth-child(2),
.deliverables-grid .deliverable-card:nth-child(2),
.related-grid .related-card:nth-child(2),
.footer-contact-grid .footer-contact-card:nth-child(2) {
    transition-delay: 0.12s;
}

.service-grid .service-card:nth-child(3),
.why-choose-grid .why-card:nth-child(3),
.process-grid .process-card:nth-child(3),
.offering-grid .offering-card:nth-child(3),
.protection-grid .protection-card:nth-child(3),
.deliverables-grid .deliverable-card:nth-child(3),
.related-grid .related-card:nth-child(3),
.footer-contact-grid .footer-contact-card:nth-child(3) {
    transition-delay: 0.20s;
}

.service-grid .service-card:nth-child(4),
.why-choose-grid .why-card:nth-child(4),
.offering-grid .offering-card:nth-child(4),
.deliverables-grid .deliverable-card:nth-child(4) {
    transition-delay: 0.28s;
}

.service-grid .service-card:nth-child(5),
.offering-grid .offering-card:nth-child(5) {
    transition-delay: 0.36s;
}

.service-grid .service-card:nth-child(6),
.offering-grid .offering-card:nth-child(6) {
    transition-delay: 0.44s;
}

/* Hero Elements Staggered Entrance */
.hero-copy .eyebrow {
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-copy h1 {
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.hero-description {
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.34s both;
}

.hero-actions {
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.46s both;
}

.hero-footnote {
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.58s both;
}

.hero-art {
    animation: heroArtIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroArtIn {
    0% {
        opacity: 0;
        transform: scale(0.93) translateY(24px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Floating ambient motion for hero artwork */
.hero-art img {
    animation: heroArtFloat 7s ease-in-out infinite alternate;
}

@keyframes heroArtFloat {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-8px) scale(1.02);
    }
}

/* Dynamic dancing audio frequency bars in hero footnote */
.little-bars i {
    border-radius: 2px;
    animation: audioBounce 1.1s ease-in-out infinite alternate;
}
.little-bars i:nth-child(1) { animation-delay: 0.1s; }
.little-bars i:nth-child(2) { animation-delay: 0.4s; }
.little-bars i:nth-child(3) { animation-delay: 0.2s; }
.little-bars i:nth-child(4) { animation-delay: 0.5s; }
.little-bars i:nth-child(5) { animation-delay: 0.3s; }

@keyframes audioBounce {
    0% {
        height: 6px;
        opacity: 0.55;
    }
    100% {
        height: 23px;
        opacity: 1;
    }
}

/* Floating badge animations in hero art */
.art-label-top {
    animation: badgeFloat1 5.5s ease-in-out infinite alternate;
}
.art-caption {
    animation: badgeFloat2 6.5s ease-in-out infinite alternate;
}

@keyframes badgeFloat1 {
    0% { transform: rotate(8deg) translateY(0); }
    100% { transform: rotate(10deg) translateY(-6px); }
}

@keyframes badgeFloat2 {
    0% { transform: rotate(-5deg) translateY(0); }
    100% { transform: rotate(-3deg) translateY(6px); }
}

/* Button Interactive Glow & Light Sweep Shimmer */
.button {
    position: relative;
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 42, 68, 0.35);
}

.button:active {
    transform: translateY(0) scale(0.98);
}

.button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.32) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    pointer-events: none;
    opacity: 0;
}

.button:hover::after {
    animation: btnShimmer 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes btnShimmer {
    0% {
        left: -60%;
        opacity: 1;
    }
    100% {
        left: 140%;
        opacity: 0;
    }
}

.button span[aria-hidden="true"],
.circle-link span[aria-hidden="true"] {
    transition: transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.button:hover span[aria-hidden="true"] {
    transform: translate(3px, -3px);
}

.circle-link:hover span[aria-hidden="true"] {
    transform: translate(4px, -4px) scale(1.1);
}

/* Brand Asterisk Spin on Hover */
.brand:hover .brand-mark span,
.brand:hover .tiny-cross {
    transform: rotate(180deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-mark span {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Card Interactive Elevate & Glow Micro-interactions */
.service-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.35s ease, background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 20px rgba(165, 138, 255, 0.12);
    border-color: #7b659d;
}

.project-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.project-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
}

.project-card img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover img {
    transform: scale(1.05);
}

.process-card {
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: #8c72b2;
    background: #1e1925;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

.process-card:hover .step-number {
    color: var(--lime);
    transform: scale(1.08);
}

.step-number {
    transition: color 0.25s ease, transform 0.25s ease;
}

/* ==========================================================================
   Ambient Cursor Glow & 3D Card Parallax Tilt
   ========================================================================== */

/* Fullscreen Ambient Pointer Glow Follower */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 640px;
    height: 640px;
    margin-top: -320px;
    margin-left: -320px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 42, 68, 0.12) 0%,
        rgba(255, 90, 110, 0.05) 42%,
        transparent 72%
    );
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
    will-change: transform;
    mix-blend-mode: screen;
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
    .cursor-glow {
        display: none !important;
    }
}

/* 3D Perspective Card Tilt & Dynamic Specular Illumination */
.service-card,
.why-card,
.offering-card,
.process-card,
.project-card,
.footer-contact-card,
.deliverable-card,
.related-card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
    will-change: transform;
}

/* Dynamic specular gradient that tracks mouse across card surface */
.service-card::before,
.why-card::before,
.offering-card::before,
.process-card::before,
.project-card::before,
.footer-contact-card::before,
.deliverable-card::before,
.related-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        340px circle at var(--card-mouse-x, -999px) var(--card-mouse-y, -999px),
        rgba(255, 42, 68, 0.22) 0%,
        rgba(255, 85, 105, 0.08) 38%,
        transparent 72%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover::before,
.why-card:hover::before,
.offering-card:hover::before,
.process-card:hover::before,
.project-card:hover::before,
.footer-contact-card:hover::before,
.deliverable-card:hover::before,
.related-card:hover::before,
.impact-card:hover::before {
    opacity: 1;
}

/* Card inner layers pop with subtle 3D depth */
.service-card > *,
.why-card > *,
.offering-card > *,
.process-card > *,
.project-card > *,
.footer-contact-card > *,
.deliverable-card > *,
.related-card > *,
.impact-card > * {
    position: relative;
    z-index: 2;
}

.why-card .why-icon-box {
    transform: translateZ(16px);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card .service-top,
.process-card .step-number {
    transform: translateZ(12px);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Hero Floating Live Metric Badges
   ========================================================================== */
.hero-live-badge {
    position: absolute;
    z-index: 3;
    background: rgba(18, 15, 25, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(165, 138, 255, 0.25);
    border-radius: 16px;
    padding: 11px 17px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.hero-live-badge:hover {
    transform: scale(1.05) translateY(-2px);
    border-color: rgba(255, 42, 68, 0.45);
}

.hero-live-badge.badge-top-left {
    top: 7%;
    left: 5%;
    animation: liveBadgeFloat1 6s ease-in-out infinite alternate;
}

.hero-live-badge.badge-bottom-right {
    bottom: 7%;
    right: 5%;
    animation: liveBadgeFloat2 7s ease-in-out infinite alternate;
}

@keyframes liveBadgeFloat1 {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-7px) rotate(1.5deg); }
}

@keyframes liveBadgeFloat2 {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(6px) rotate(-1.5deg); }
}

.live-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #25D366;
    position: relative;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.8);
}

.live-badge-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.6);
    animation: liveDotPulse 2s infinite ease-out;
}

@keyframes liveDotPulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.live-badge-wave {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
}

.live-badge-wave i {
    width: 3px;
    border-radius: 2px;
    background: var(--lime);
    animation: waveBounce 0.9s ease-in-out infinite alternate;
}
.live-badge-wave i:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.live-badge-wave i:nth-child(2) { height: 16px; animation-delay: 0.35s; }
.live-badge-wave i:nth-child(3) { height: 10px; animation-delay: 0.2s; }

@keyframes waveBounce {
    0% { height: 4px; opacity: 0.5; }
    100% { height: 16px; opacity: 1; }
}

.live-badge-text {
    display: flex;
    flex-direction: column;
}

.live-badge-text strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.live-badge-text small {
    font-size: 0.7rem;
    color: #a49ab5;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .hero-live-badge {
        display: none !important;
    }
}

/* ==========================================================================
   Impact & Stats Counter Section
   ========================================================================== */
.impact-counter-section {
    padding: 75px 0 65px;
    position: relative;
    z-index: 2;
}

.impact-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.impact-heading-copy h2 {
    font-size: clamp(2.1rem, 3.8vw, 3.2rem);
    letter-spacing: -0.04em;
    line-height: 1.12;
    margin: 0;
    color: #ffffff;
}

.impact-heading-copy h2 span {
    color: var(--violet);
}

.impact-live-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 18px;
    border-radius: 30px;
    background: #17131e;
    border: 1px solid #3c324c;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ded8e8;
}

.live-dot-wave {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 10px rgba(255, 42, 68, 0.85);
    position: relative;
}

.live-dot-wave::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(255, 42, 68, 0.65);
    animation: liveDotPulse 2.2s infinite ease-out;
}

.pulse-radar {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    margin-right: 9px;
    box-shadow: 0 0 8px rgba(255, 42, 68, 0.85);
}

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

.impact-card {
    background: linear-gradient(150deg, #171419 0%, #100e13 100%);
    border: 1px solid #362227;
    border-radius: 22px;
    padding: 38px 28px 32px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.55);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}

.impact-card:hover {
    border-color: #ff2a44;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.65), 0 0 25px rgba(255, 42, 68, 0.2);
}

.impact-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.impact-tag {
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    color: var(--violet);
    text-transform: uppercase;
}

.impact-serial {
    font-size: 0.78rem;
    font-weight: 600;
    color: #6d647c;
}

.impact-val-wrapper {
    margin-bottom: 12px;
}

.impact-number {
    font-size: clamp(2.4rem, 3.8vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1;
    color: var(--red);
    text-shadow: 0 0 30px rgba(255, 42, 68, 0.4);
    font-variant-numeric: tabular-nums;
    display: inline-block;
}

.impact-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.015em;
    line-height: 1.25;
    margin: 0 0 10px;
}

.impact-detail {
    font-size: 0.88rem;
    line-height: 1.62;
    color: #a49bb3;
    margin: 0 0 24px;
    flex-grow: 1;
}

.impact-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 16px;
    margin-top: auto;
}

.impact-micro-badge {
    font-size: 0.76rem;
    font-weight: 600;
    color: #c4bcd2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.impact-arrow-up {
    color: var(--lime);
    font-weight: 800;
}

@media (max-width: 991px) {
    .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
    .impact-card {
        padding: 30px 24px;
    }
}

@media (max-width: 576px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
    .impact-counter-section {
        padding: 55px 0 45px;
    }
    .impact-header-row {
        margin-bottom: 30px;
    }
}
