:root {
    --cc-black: #070609;
    --cc-ink: #0f0b14;
    --cc-panel: #17111f;
    --cc-panel-soft: #20172b;
    --cc-gold: #d9aa42;
    --cc-gold-light: #ffd978;
    --cc-gold-deep: #9f7021;
    --cc-cream: #fff8e7;
    --cc-text: #f7f0df;
    --cc-muted: #b8a992;
    --cc-line: rgba(255, 217, 120, 0.16);
    --cc-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    --cc-radius: 8px;
    --cc-ease: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 136px;
}

body {
    margin: 0;
    color: var(--cc-text);
    background:
        radial-gradient(circle at 16% 8%, rgba(217, 170, 66, 0.14), transparent 28rem),
        radial-gradient(circle at 88% 16%, rgba(120, 68, 184, 0.16), transparent 30rem),
        var(--cc-black);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.cc-cursor-glow {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 190px;
    height: 190px;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
    transform: translate3d(calc(var(--cc-cursor-x, -400px) - 50%), calc(var(--cc-cursor-y, -400px) - 50%), 0);
    background:
        radial-gradient(circle, rgba(255, 217, 120, 0.18), rgba(102, 53, 165, 0.10) 45%, transparent 70%);
    filter: blur(8px);
    mix-blend-mode: screen;
    transition: opacity 220ms ease;
}

body.cc-pointer-active .cc-cursor-glow {
    opacity: 1;
}

.cc-site-aurora {
    position: fixed;
    inset: -20%;
    z-index: -10;
    pointer-events: none;
    opacity: 0.34;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 217, 120, 0.16), transparent 22rem),
        radial-gradient(circle at 80% 18%, rgba(132, 79, 205, 0.18), transparent 24rem),
        radial-gradient(circle at 48% 82%, rgba(217, 170, 66, 0.08), transparent 20rem);
    animation: cc-aurora-drift 18s ease-in-out infinite alternate;
}

.cc-scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 65;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 217, 120, 0.36);
    border-radius: 50%;
    color: #161006;
    background: linear-gradient(135deg, var(--cc-gold-light), var(--cc-gold-deep));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(0.92);
    transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.cc-scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.cc-scroll-top:hover {
    box-shadow: 0 22px 58px rgba(217, 170, 66, 0.34);
    transform: translateY(-3px) scale(1.04);
}

.cc-ripple {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(255, 248, 231, 0.45);
    transform: translate(-50%, -50%) scale(0);
    animation: cc-ripple 620ms ease-out forwards;
}

.cc-split-word {
    display: inline-block;
    will-change: transform, opacity;
}

.is-visible .cc-split-word,
.cc-motion-ready .is-visible .cc-split-word {
    animation: cc-word-rise 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container,
.header-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 217, 120, 0.12);
    background: rgba(7, 6, 9, 0.78);
    backdrop-filter: blur(18px);
    transition: background var(--cc-ease), box-shadow var(--cc-ease), border-color var(--cc-ease), transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.site-header.is-hidden {
    transform: translateY(-110%);
}

.site-header.is-scrolled {
    background: rgba(7, 6, 9, 0.94);
    border-color: rgba(255, 217, 120, 0.2);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 217, 120, 0.54), transparent);
    opacity: 0;
    transition: opacity 240ms ease;
}

.site-header.is-scrolled::after {
    opacity: 1;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    min-height: 116px;
}

.site-branding {
    flex: 0 0 auto;
}

.site-logo {
    color: var(--cc-cream);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0;
    text-decoration: none;
}

.site-logo span {
    color: var(--cc-gold-light);
}

.custom-logo-link img {
    display: block;
    max-height: 110px;
    width: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    position: relative;
    color: rgba(255, 248, 231, 0.78);
    font-size: 0.94rem;
    font-weight: 650;
    text-decoration: none;
    transition: color var(--cc-ease);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--cc-gold-deep), var(--cc-gold-light));
    transition: transform var(--cc-ease);
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
    color: var(--cc-gold-light);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after {
    transform: scaleX(1);
}

.nav-menu .sub-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    z-index: 20;
    min-width: 230px;
    margin: 0;
    padding: 10px;
    list-style: none;
    border: 1px solid rgba(255, 217, 120, 0.22);
    border-radius: var(--cc-radius);
    background: rgba(8, 6, 11, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px) scale(0.98);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
}

.nav-menu .sub-menu a {
    display: block;
    padding: 11px 12px;
    border-radius: 7px;
    color: var(--cc-muted);
    white-space: nowrap;
}

.nav-menu .sub-menu a::after {
    display: none;
}

.nav-menu .sub-menu a:hover {
    color: var(--cc-gold-light);
    background: rgba(255, 217, 120, 0.08);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--cc-line);
    border-radius: var(--cc-radius);
    background: rgba(255, 248, 231, 0.04);
    cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
    width: 20px;
    height: 2px;
    background: var(--cc-gold-light);
    transition: transform var(--cc-ease), opacity var(--cc-ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: var(--cc-radius);
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform var(--cc-ease), box-shadow var(--cc-ease), border-color var(--cc-ease), background var(--cc-ease), color var(--cc-ease);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    position: relative;
    overflow: hidden;
    color: #161006;
    background: linear-gradient(135deg, var(--cc-gold-light), var(--cc-gold), var(--cc-gold-deep));
    box-shadow: 0 14px 36px rgba(217, 170, 66, 0.24);
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: -40% auto -40% -34%;
    width: 28%;
    transform: rotate(18deg);
    background: rgba(255, 255, 255, 0.4);
    filter: blur(4px);
    opacity: 0;
}

.btn-primary:hover::before {
    animation: cc-button-sweep 820ms ease;
}

.btn-primary:hover {
    box-shadow: 0 18px 48px rgba(217, 170, 66, 0.34);
}

.cc-final-cta .btn-primary,
.cc-service-detail-cta .btn-primary,
.cc-contact-form .btn-primary {
    animation: cc-cta-pulse 3.6s ease-in-out infinite;
}

.btn-secondary {
    color: var(--cc-gold-light);
    border-color: rgba(255, 217, 120, 0.35);
    background: rgba(255, 248, 231, 0.04);
}

.btn-secondary:hover {
    border-color: var(--cc-gold-light);
    background: rgba(255, 217, 120, 0.08);
}

.cc-hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - 82px);
    padding: 92px 0 78px;
    overflow: hidden;
}

.cc-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 180px;
    background: linear-gradient(180deg, transparent, rgba(23, 17, 31, 0.96));
}

.cc-glow {
    position: absolute;
    z-index: -2;
    width: 36rem;
    height: 36rem;
    border-radius: 50%;
    filter: blur(58px);
    opacity: 0.34;
}

.cc-glow-one {
    top: -12rem;
    left: -16rem;
    background: rgba(217, 170, 66, 0.45);
}

.cc-glow-two {
    right: -15rem;
    bottom: -10rem;
    background: rgba(102, 53, 165, 0.55);
}

.cc-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
    gap: 56px;
    align-items: center;
}

.cc-eyebrow {
    margin: 0 0 14px;
    color: var(--cc-gold-light);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cc-hero h1,
.cc-section h2,
.cc-final-cta h2 {
    margin: 0;
    color: var(--cc-cream);
    font-size: clamp(2.55rem, 6vw, 5.55rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.cc-hero h1 {
    max-width: 760px;
}

.cc-hero-text {
    max-width: 640px;
    margin: 26px 0 0;
    color: var(--cc-muted);
    font-size: 1.1rem;
}

.cc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.cc-hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 660px;
    gap: 14px;
    margin-top: 42px;
}

.cc-hero-proof div {
    padding: 18px;
    border: 1px solid var(--cc-line);
    border-radius: var(--cc-radius);
    background: rgba(255, 248, 231, 0.045);
}

.cc-hero-proof strong {
    display: block;
    color: var(--cc-gold-light);
    font-size: 1.55rem;
    line-height: 1;
}

.cc-hero-proof span {
    display: block;
    margin-top: 8px;
    color: var(--cc-muted);
    font-size: 0.82rem;
}

.cc-client-logos {
    position: relative;
    overflow: hidden;
    padding: 54px 0 62px;
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 217, 120, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(7, 6, 9, 0.96), rgba(15, 11, 20, 0.96));
    border-top: 1px solid rgba(255, 217, 120, 0.12);
    border-bottom: 1px solid rgba(255, 217, 120, 0.1);
}

.cc-client-logos-head {
    display: grid;
    gap: 10px;
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.cc-client-logos-head h2 {
    margin: 0;
    color: var(--cc-cream);
    font-size: clamp(1.8rem, 3.6vw, 3.1rem);
    line-height: 1.05;
}

.cc-client-logos-head p:not(.cc-eyebrow) {
    margin: 0;
    color: var(--cc-muted);
}

.cc-logo-bubble-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(14px, 2.4vw, 24px);
    max-width: 1050px;
    margin: 0 auto;
}

.cc-logo-bubble {
    position: relative;
    isolation: isolate;
    display: grid;
    place-items: center;
    width: 214px;
    height: 126px;
    padding: 18px;
    border: 1px solid rgba(255, 217, 120, 0.22);
    border-radius: 38px;
    color: var(--cc-cream);
    background:
        linear-gradient(145deg, rgba(255, 248, 231, 0.1), rgba(255, 217, 120, 0.05)),
        rgba(22, 16, 30, 0.78);
    box-shadow:
        0 20px 58px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-align: center;
    text-decoration: none;
    transition: transform var(--cc-ease), border-color var(--cc-ease), box-shadow var(--cc-ease), background var(--cc-ease);
    animation: cc-logo-bubble-float 5.8s ease-in-out infinite;
}

.cc-logo-bubble::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: -1;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255, 217, 120, 0.08), transparent 58%),
        rgba(255, 248, 231, 0.05);
}

.cc-logo-bubble::after {
    content: "";
    position: absolute;
    inset: 26px 28px;
    z-index: -1;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: inset 0 0 0 1px rgba(7, 6, 9, 0.05);
}

.cc-logo-bubble:hover {
    animation-play-state: paused;
    transform: translateY(-7px) scale(1.03);
    border-color: rgba(255, 217, 120, 0.48);
    box-shadow: 0 26px 74px rgba(217, 170, 66, 0.16);
}

.cc-logo-bubble img {
    display: block;
    width: 152px;
    height: 66px;
    object-fit: contain;
    filter: none;
}

.cc-logo-bubble span {
    display: block;
    max-width: 100%;
    color: var(--cc-cream);
    font-size: clamp(0.9rem, 1.2vw, 1.06rem);
    font-weight: 900;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.cc-logo-bubble-2,
.cc-logo-bubble-5 {
    animation-delay: -1.5s;
}

.cc-logo-bubble-3 {
    animation-delay: -2.4s;
}

.cc-logo-bubble-4 {
    animation-delay: -3.1s;
}

.cc-logo-bubble-6 {
    animation-delay: -4.2s;
}

@keyframes cc-logo-bubble-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 640px) {
    .cc-client-logos {
        padding: 42px 0 48px;
    }

    .cc-logo-bubble-cloud {
        gap: 12px;
    }

    .cc-logo-bubble,
    .cc-logo-bubble-2,
    .cc-logo-bubble-4,
    .cc-logo-bubble-5 {
        width: calc(50% - 8px);
        height: 104px;
        padding: 16px;
        border-radius: 28px;
    }

    .cc-logo-bubble::after {
        inset: 22px 20px;
        border-radius: 14px;
    }

    .cc-logo-bubble img {
        width: 118px;
        height: 50px;
    }
}

.cc-hero-visual {
    position: relative;
}

.cc-hero-image-frame,
.cc-dashboard-visual {
    width: 100%;
    min-height: 480px;
    border: 1px solid rgba(255, 217, 120, 0.2);
    border-radius: var(--cc-radius);
    object-fit: cover;
    box-shadow: var(--cc-shadow);
}

.cc-hero-image-frame {
    position: relative;
    overflow: hidden;
    background: rgba(255, 248, 231, 0.035);
}

.cc-hero-image {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    border-radius: inherit;
    box-shadow: none;
}

.cc-dashboard-visual {
    position: relative;
    overflow: hidden;
    padding: 28px;
    background:
        linear-gradient(145deg, rgba(255, 217, 120, 0.18), transparent 34%),
        radial-gradient(circle at 72% 18%, rgba(255, 217, 120, 0.28), transparent 7rem),
        linear-gradient(160deg, #21142c, #0c0810 66%);
}

.cc-dashboard-top {
    display: flex;
    gap: 8px;
}

.cc-dashboard-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cc-gold);
}

.cc-chart {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 36px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    gap: 16px;
    height: 220px;
}

.cc-chart i {
    display: block;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, var(--cc-gold-light), var(--cc-gold-deep));
    box-shadow: 0 0 24px rgba(255, 217, 120, 0.28);
    animation: cc-bars 2.8s ease-in-out infinite;
}

.cc-chart i:nth-child(1) { height: 42%; animation-delay: 0ms; }
.cc-chart i:nth-child(2) { height: 66%; animation-delay: 120ms; }
.cc-chart i:nth-child(3) { height: 50%; animation-delay: 220ms; }
.cc-chart i:nth-child(4) { height: 82%; animation-delay: 340ms; }
.cc-chart i:nth-child(5) { height: 72%; animation-delay: 460ms; }

.cc-metric-card {
    position: absolute;
    top: 88px;
    left: 30px;
    width: min(220px, calc(100% - 60px));
    padding: 20px;
    border: 1px solid rgba(255, 217, 120, 0.2);
    border-radius: var(--cc-radius);
    background: rgba(7, 6, 9, 0.62);
    backdrop-filter: blur(14px);
}

.cc-metric-card span {
    display: block;
    color: var(--cc-muted);
    font-size: 0.82rem;
}

.cc-metric-card strong {
    display: block;
    margin-top: 8px;
    color: var(--cc-gold-light);
    font-size: 3.2rem;
    line-height: 1;
}

.cc-orbit-badge {
    position: absolute;
    top: 72px;
    right: 34px;
    display: grid;
    place-items: center;
    width: 92px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 217, 120, 0.26);
    border-radius: 50%;
    color: var(--cc-cream);
    font-weight: 900;
    background: rgba(255, 217, 120, 0.12);
    box-shadow: 0 0 42px rgba(255, 217, 120, 0.2);
    animation: cc-float 4.5s ease-in-out infinite;
}

.cc-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cc-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.12;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 217, 120, 0.22), transparent 16rem),
        radial-gradient(circle at 88% 66%, rgba(102, 53, 165, 0.22), transparent 18rem);
    animation: cc-section-ambient 14s ease-in-out infinite alternate;
}

.cc-services,
.cc-industries,
.cc-testimonials {
    background: linear-gradient(180deg, rgba(23, 17, 31, 0.98), rgba(13, 9, 17, 0.98));
}

.cc-why,
.cc-process {
    background: var(--cc-black);
}

.cc-section-head {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.cc-left-head {
    margin: 0;
    text-align: left;
}

.cc-section h2,
.cc-final-cta h2 {
    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 1.08;
}

.cc-section-head p:not(.cc-eyebrow),
.cc-final-cta p:not(.cc-eyebrow) {
    margin: 18px 0 0;
    color: var(--cc-muted);
    font-size: 1.02rem;
}

.cc-card-grid {
    display: grid;
    gap: 22px;
}

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

.cc-service-card,
.cc-process-card,
.cc-testimonial-card,
.cc-feature-panel {
    border: 1px solid var(--cc-line);
    border-radius: var(--cc-radius);
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.06), rgba(255, 248, 231, 0.025));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.cc-service-card,
.cc-process-card,
.cc-testimonial-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    transition: transform var(--cc-ease), border-color var(--cc-ease), background var(--cc-ease), box-shadow var(--cc-ease);
}

.cc-service-card::before,
.cc-process-card::before,
.cc-testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cc-gold-light), transparent);
    opacity: 0;
    transition: opacity var(--cc-ease);
}

.cc-service-card:hover,
.cc-process-card:hover,
.cc-testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 217, 120, 0.42);
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.085), rgba(255, 248, 231, 0.035));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.cc-service-card:hover::before,
.cc-process-card:hover::before,
.cc-testimonial-card:hover::before {
    opacity: 1;
}

.cc-card-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 217, 120, 0.22);
    border-radius: 50%;
    color: var(--cc-gold-light);
    background: rgba(255, 217, 120, 0.08);
    font-weight: 900;
}

.cc-service-card h3,
.cc-process-card h3 {
    margin: 0 0 12px;
    color: var(--cc-cream);
    font-size: 1.2rem;
    line-height: 1.25;
}

.cc-service-card p,
.cc-process-card p,
.cc-testimonial-card p {
    margin: 0;
    color: var(--cc-muted);
    font-size: 0.96rem;
}

.cc-split {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: 52px;
    align-items: center;
}

.cc-feature-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
}

.cc-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 16px;
    border: 1px solid rgba(255, 217, 120, 0.12);
    border-radius: var(--cc-radius);
    background: rgba(7, 6, 9, 0.35);
}

.cc-feature-item span {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cc-gold-light), var(--cc-gold-deep));
    box-shadow: 0 0 22px rgba(255, 217, 120, 0.28);
}

.cc-feature-item p {
    margin: 0;
    color: var(--cc-cream);
    font-weight: 750;
}

.cc-industries-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.cc-industry-pill {
    display: grid;
    place-items: center;
    min-height: 86px;
    padding: 16px;
    border: 1px solid var(--cc-line);
    border-radius: var(--cc-radius);
    color: var(--cc-cream);
    text-align: center;
    font-weight: 800;
    background: rgba(255, 248, 231, 0.045);
    transition: transform var(--cc-ease), border-color var(--cc-ease), background var(--cc-ease);
}

.cc-industry-pill:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 217, 120, 0.42);
    background: rgba(255, 217, 120, 0.08);
}

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

.cc-process-card {
    min-height: 260px;
}

.cc-process-card span {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--cc-gold-light);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}

.cc-testimonial-layout {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 52px;
    align-items: center;
}

.cc-testimonial-stack {
    display: grid;
    gap: 18px;
}

.cc-testimonial-slider {
    min-width: 0;
}

.cc-testimonial-viewport {
    overflow: hidden;
    border-radius: var(--cc-radius);
}

.cc-testimonial-track {
    display: flex;
    align-items: stretch;
    transition: transform 520ms ease;
    will-change: transform;
}

.cc-testimonial-card {
    flex: 0 0 100%;
    padding: 24px;
}

.cc-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.cc-slider-btn {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--cc-line);
    border-radius: 50%;
    color: var(--cc-gold-light);
    background: rgba(255, 248, 231, 0.045);
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    transition: transform var(--cc-ease), border-color var(--cc-ease), background var(--cc-ease);
}

.cc-slider-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 217, 120, 0.48);
    background: rgba(255, 217, 120, 0.1);
}

.cc-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cc-slider-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 248, 231, 0.26);
    cursor: pointer;
    transition: width var(--cc-ease), background var(--cc-ease);
}

.cc-slider-dots button.is-active {
    width: 24px;
    border-radius: 999px;
    background: var(--cc-gold-light);
}

.cc-stars {
    color: var(--cc-gold-light);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.cc-testimonial-card div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--cc-line);
}

.cc-testimonial-card strong {
    color: var(--cc-cream);
}

.cc-testimonial-card span {
    color: var(--cc-muted);
    font-size: 0.86rem;
}

.cc-final-cta {
    padding: 74px 0;
    background:
        linear-gradient(90deg, rgba(217, 170, 66, 0.18), rgba(102, 53, 165, 0.12), rgba(217, 170, 66, 0.12)),
        var(--cc-ink);
}

.cc-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 34px;
    border: 1px solid rgba(255, 217, 120, 0.22);
    border-radius: var(--cc-radius);
    background: rgba(7, 6, 9, 0.38);
    box-shadow: var(--cc-shadow);
}

.cc-final-cta-inner > div {
    max-width: 760px;
}

.site-footer {
    border-top: 1px solid var(--cc-line);
    background: #050407;
}

body > footer:not(.site-footer),
.site-footer ~ footer,
.cc-site-footer,
body.home-template footer:not(.site-footer),
body.home-template .site-footer ~ .site-footer,
body.home-template .site-footer .footer-widgets-grid,
body.home-template .cc-site-footer {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.8fr);
    gap: 52px;
    padding: 70px 0 48px;
}

.footer-brand p {
    max-width: 380px;
    margin: 18px 0 0;
    color: var(--cc-muted);
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    text-decoration: none;
}

.footer-logo-link img {
    display: block;
    max-width: 240px;
    max-height: 120px;
    width: auto;
    height: auto;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    align-items: start;
}

.footer-widgets-grid {
    display: contents;
}

.footer-widget-title,
.footer-links-grid h4 {
    margin: 0 0 14px;
    color: var(--cc-gold-light);
    font-size: 1rem;
}

.footer-widget,
.footer-widget p,
.footer-widget a,
.footer-links-grid a,
.footer-links-grid span,
.footer-menu a {
    color: var(--cc-muted);
    text-decoration: none;
}

.footer-widget,
.footer-widget p,
.footer-widget a,
.footer-links-grid a,
.footer-links-grid > div > span,
.footer-menu a {
    display: block;
}

.footer-widget a,
.footer-links-grid a,
.footer-links-grid span,
.footer-menu a {
    margin-top: 9px;
}

.footer-widget a:hover,
.footer-links-grid a:hover,
.footer-menu a:hover {
    color: var(--cc-gold-light);
}

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

.footer-menu li {
    margin: 0;
    padding: 0;
}

.footer-contact-list {
    display: grid;
    gap: 10px;
    margin: 0 0 14px;
}

.footer-contact-list a,
.footer-contact-list > span {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 34px;
    margin: 0;
}

.footer-contact-list a:hover {
    color: var(--cc-gold-light);
}

.footer-contact-icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #0b0704;
    background: linear-gradient(135deg, var(--cc-gold-light), var(--cc-gold));
    border-radius: 8px;
    font-size: 0.88rem;
    line-height: 1;
}

.footer-contact-icon svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.footer-socials a {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin: 0;
    color: var(--cc-gold-light);
    background: rgba(255, 217, 120, 0.08);
    border: 1px solid rgba(255, 217, 120, 0.16);
    border-radius: 10px;
    text-decoration: none;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-socials a:hover {
    color: #090604;
    background: linear-gradient(135deg, var(--cc-gold-light), var(--cc-gold));
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-socials span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 217, 120, 0.1);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
}

.footer-bottom p {
    margin: 0;
    color: rgba(184, 169, 146, 0.82);
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    filter: blur(5px);
    transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 760ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

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

.cc-service-card,
.cc-feature-item,
.cc-industry-pill,
.cc-process-step,
.cc-testimonial-slider,
.cc-final-cta-inner,
.cc-service-page-card,
.cc-service-detail-card,
.cc-services-process-step,
.cc-services-radar,
.cc-seoz-service-card,
.cc-seoz-process-card,
.cc-seoz-feature,
.cc-seoz-detail-card,
.cc-seoz-detail-outcome,
.cc-blog-card,
.cc-case-card,
.cc-case-metric,
.cc-case-story-grid section,
.cc-sidebar-box,
.cc-benefit-item,
.cc-overview-panel,
.cc-about-value,
.cc-contact-card,
.cc-contact-form-wrap,
.site-footer {
    transition:
        opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 220ms ease,
        background 220ms ease,
        box-shadow 220ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.cc-motion-ready .cc-service-card,
.cc-motion-ready .cc-feature-item,
.cc-motion-ready .cc-industry-pill,
.cc-motion-ready .cc-process-step,
.cc-motion-ready .cc-testimonial-slider,
.cc-motion-ready .cc-final-cta-inner,
.cc-motion-ready .cc-service-page-card,
.cc-motion-ready .cc-service-detail-card,
.cc-motion-ready .cc-services-process-step,
.cc-motion-ready .cc-services-radar,
.cc-motion-ready .cc-seoz-service-card,
.cc-motion-ready .cc-seoz-process-card,
.cc-motion-ready .cc-seoz-feature,
.cc-motion-ready .cc-seoz-detail-card,
.cc-motion-ready .cc-seoz-detail-outcome,
.cc-motion-ready .cc-blog-card,
.cc-motion-ready .cc-case-card,
.cc-motion-ready .cc-case-metric,
.cc-motion-ready .cc-case-story-grid section,
.cc-motion-ready .cc-sidebar-box,
.cc-motion-ready .cc-benefit-item,
.cc-motion-ready .cc-overview-panel,
.cc-motion-ready .cc-about-value,
.cc-motion-ready .cc-contact-card,
.cc-motion-ready .cc-contact-form-wrap,
.cc-motion-ready .site-footer {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    filter: blur(6px);
}

.cc-motion-ready .cc-service-card.is-visible,
.cc-motion-ready .cc-feature-item.is-visible,
.cc-motion-ready .cc-industry-pill.is-visible,
.cc-motion-ready .cc-process-step.is-visible,
.cc-motion-ready .cc-testimonial-slider.is-visible,
.cc-motion-ready .cc-final-cta-inner.is-visible,
.cc-motion-ready .cc-service-page-card.is-visible,
.cc-motion-ready .cc-service-detail-card.is-visible,
.cc-motion-ready .cc-services-process-step.is-visible,
.cc-motion-ready .cc-services-radar.is-visible,
.cc-motion-ready .cc-seoz-service-card.is-visible,
.cc-motion-ready .cc-seoz-process-card.is-visible,
.cc-motion-ready .cc-seoz-feature.is-visible,
.cc-motion-ready .cc-seoz-detail-card.is-visible,
.cc-motion-ready .cc-seoz-detail-outcome.is-visible,
.cc-motion-ready .cc-blog-card.is-visible,
.cc-motion-ready .cc-case-card.is-visible,
.cc-motion-ready .cc-case-metric.is-visible,
.cc-motion-ready .cc-case-story-grid section.is-visible,
.cc-motion-ready .cc-sidebar-box.is-visible,
.cc-motion-ready .cc-benefit-item.is-visible,
.cc-motion-ready .cc-overview-panel.is-visible,
.cc-motion-ready .cc-about-value.is-visible,
.cc-motion-ready .cc-contact-card.is-visible,
.cc-motion-ready .cc-contact-form-wrap.is-visible,
.cc-motion-ready .site-footer.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.cc-hero-copy.reveal {
    transform: translateX(-24px);
}

.cc-hero-visual.reveal {
    transform: translateX(24px) scale(0.98);
}

.cc-hero-copy.reveal.is-visible,
.cc-hero-visual.reveal.is-visible {
    transform: translateX(0) scale(1);
}

@keyframes cc-bars {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.82); }
}

@keyframes cc-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes cc-button-sweep {
    0% { transform: translateX(0) rotate(18deg); opacity: 0; }
    24% { opacity: 0.7; }
    100% { transform: translateX(520%) rotate(18deg); opacity: 0; }
}

@keyframes cc-hover-breathe {
    0%, 100% { box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32); }
    50% { box-shadow: 0 30px 86px rgba(217, 170, 66, 0.18); }
}

@keyframes cc-section-ambient {
    0% { transform: translate3d(-1.5%, -1%, 0) scale(1); }
    100% { transform: translate3d(1.5%, 1%, 0) scale(1.05); }
}

@keyframes cc-aurora-drift {
    0% { transform: translate3d(-2%, -1%, 0) rotate(0deg) scale(1); }
    50% { transform: translate3d(1.5%, 2%, 0) rotate(2deg) scale(1.04); }
    100% { transform: translate3d(2%, -1.5%, 0) rotate(-2deg) scale(1.02); }
}

@keyframes cc-ripple {
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(14);
    }
}

@keyframes cc-word-rise {
    from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes cc-cta-pulse {
    0%, 100% { box-shadow: 0 18px 48px rgba(217, 170, 66, 0.24); }
    50% { box-shadow: 0 18px 64px rgba(255, 217, 120, 0.42); }
}

::selection {
    color: #120d06;
    background: var(--cc-gold-light);
}

@media (max-width: 1060px) {
    .cc-hero-grid,
    .cc-split,
    .cc-testimonial-layout,
    .footer-main {
        grid-template-columns: 1fr;
    }

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

    .cc-industries-grid,
    .cc-process-grid,
    .cc-service-detail-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cc-hero-visual {
        max-width: 660px;
    }

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

    .cc-service-detail-hero-grid {
        grid-template-columns: 1fr;
    }

    .cc-service-motion-panel {
        max-width: 640px;
    }
}

@media (max-width: 820px) {
    .container,
    .header-container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 72px;
    }

    .main-navigation {
        flex: 0 0 auto;
        order: 3;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        inset: 72px 14px auto;
        display: grid;
        gap: 0;
        max-height: calc(100vh - 92px);
        overflow: auto;
        padding: 12px;
        border: 1px solid var(--cc-line);
        border-radius: var(--cc-radius);
        background: rgba(12, 8, 16, 0.98);
        box-shadow: var(--cc-shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--cc-ease), transform var(--cc-ease);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu a {
        display: block;
        padding: 15px 12px;
    }

    .nav-menu a::after {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .cc-hero {
        min-height: auto;
        padding: 70px 0 54px;
    }

    .cc-hero-grid {
        gap: 42px;
    }

    .cc-hero-proof,
    .cc-feature-panel,
    .cc-services-grid,
    .cc-industries-grid,
    .cc-process-grid,
    .cc-service-detail-grid,
    .footer-widgets-grid,
    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu .sub-menu {
        position: static;
        min-width: 0;
        margin-top: 8px;
        padding: 6px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 248, 231, 0.04);
    }

    .nav-menu .sub-menu a {
        white-space: normal;
    }

    .cc-hero-image-frame,
    .cc-dashboard-visual {
        min-height: 380px;
    }

    .cc-service-detail-hero {
        padding: 76px 0 60px;
    }

    .cc-service-motion-panel {
        min-height: 300px;
    }

    .cc-section {
        padding: 72px 0;
    }

    .cc-final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px;
    }

    .footer-bottom-inner {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .cc-actions,
    .cc-actions .btn,
    .cc-final-cta .btn {
        width: 100%;
    }

    .cc-hero-proof {
        gap: 10px;
    }

    .cc-hero-proof div {
        padding: 14px;
    }

    .cc-service-card,
    .cc-process-card,
    .cc-testimonial-card {
        padding: 22px;
    }

    .cc-dashboard-visual {
        min-height: 320px;
        padding: 20px;
    }

    .cc-chart {
        left: 22px;
        right: 22px;
        bottom: 26px;
        height: 150px;
        gap: 10px;
    }

    .cc-orbit-badge {
        width: 70px;
        right: 22px;
    }
}

body.home-template .home-page .cc-hero,
body.home-template .home-page .cc-section,
body.home-template .home-page .cc-final-cta {
    display: block !important;
    width: 100% !important;
}

body.home-template .home-page .container,
body.home-template .site-footer .container {
    width: min(1120px, calc(100% - 40px)) !important;
    max-width: 1120px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.home-template .cc-hero {
    min-height: auto;
    padding: 86px 0 76px;
}

body.home-template .cc-hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
    gap: 52px;
}

body.home-template .cc-hero h1 {
    max-width: 660px;
    font-size: clamp(2.2rem, 4.25vw, 3.75rem);
    font-weight: 760;
    line-height: 1.08;
}

body.home-template .cc-section h2,
body.home-template .cc-final-cta h2 {
    font-size: clamp(1.8rem, 2.9vw, 2.55rem);
    font-weight: 740;
    line-height: 1.12;
}

body.home-template .cc-hero-text,
body.home-template .cc-section-head p:not(.cc-eyebrow),
body.home-template .cc-final-cta p:not(.cc-eyebrow) {
    font-size: 0.98rem;
}

body.home-template .cc-dashboard-visual,
body.home-template .cc-hero-image-frame {
    min-height: 390px;
}

body.home-template .cc-section {
    padding: 84px 0;
}

body.home-template .cc-services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.home-template .cc-process-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.home-template .cc-process-flow {
    position: relative;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 58px;
}

body.home-template .cc-process-flow::before {
    content: "";
    position: absolute;
    top: 45px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 217, 120, 0.24), var(--cc-gold), rgba(255, 217, 120, 0.24), transparent);
    box-shadow: 0 0 26px rgba(255, 217, 120, 0.26);
}

body.home-template .cc-process-step {
    grid-column: auto;
}

body.home-template .cc-process-step {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}

body.home-template .cc-process-step::before {
    display: none;
}

body.home-template .cc-process-step:hover {
    transform: translateY(-8px);
    background: transparent;
    box-shadow: none;
}

body.home-template .cc-process-marker {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border: 1px solid rgba(255, 217, 120, 0.32);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 217, 120, 0.34), transparent 34%),
        linear-gradient(160deg, rgba(255, 248, 231, 0.08), rgba(255, 248, 231, 0.025));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32), 0 0 38px rgba(217, 170, 66, 0.2);
    transition: transform var(--cc-ease), box-shadow var(--cc-ease), border-color var(--cc-ease);
}

body.home-template .cc-process-marker::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: inherit;
    border: 1px solid rgba(255, 217, 120, 0.14);
}

body.home-template .cc-process-marker span {
    margin: 0;
    color: var(--cc-gold-light);
    font-size: 1.25rem;
    font-weight: 850;
    line-height: 1;
}

body.home-template .cc-process-content {
    position: relative;
    min-height: 245px;
    padding: 24px 18px 22px;
    border: 1px solid var(--cc-line);
    border-radius: var(--cc-radius);
    background:
        linear-gradient(180deg, rgba(255, 248, 231, 0.065), rgba(255, 248, 231, 0.025)),
        rgba(8, 6, 11, 0.72);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.26);
    transition: transform var(--cc-ease), border-color var(--cc-ease), box-shadow var(--cc-ease), background var(--cc-ease);
}

body.home-template .cc-process-content::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 50%;
    width: 24px;
    height: 24px;
    border-top: 1px solid var(--cc-line);
    border-left: 1px solid var(--cc-line);
    background: rgba(14, 10, 18, 0.96);
    transform: translateX(-50%) rotate(45deg);
}

body.home-template .cc-process-step:hover .cc-process-marker {
    transform: translateY(-4px);
    border-color: rgba(255, 217, 120, 0.58);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.38), 0 0 48px rgba(217, 170, 66, 0.34);
}

body.home-template .cc-process-step:hover .cc-process-content {
    transform: translateY(4px);
    border-color: rgba(255, 217, 120, 0.42);
    background:
        linear-gradient(180deg, rgba(255, 248, 231, 0.09), rgba(255, 248, 231, 0.035)),
        rgba(8, 6, 11, 0.84);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
}

body.home-template .cc-process-content h3 {
    margin: 0 0 12px;
    color: var(--cc-cream);
    font-size: 1rem;
    font-weight: 780;
}

body.home-template .cc-process-content p {
    margin: 0;
    color: var(--cc-muted);
    font-size: 0.84rem;
    line-height: 1.58;
}

body.home-template .cc-process-step:nth-child(2),
body.home-template .cc-process-step:nth-child(5) {
    margin-top: 0;
}

body.home-template .cc-process-step:nth-child(1) { animation-delay: 0ms; }
body.home-template .cc-process-step:nth-child(2) { animation-delay: 90ms; }
body.home-template .cc-process-step:nth-child(3) { animation-delay: 180ms; }
body.home-template .cc-process-step:nth-child(4) { animation-delay: 270ms; }
body.home-template .cc-process-step:nth-child(5) { animation-delay: 360ms; }

body.home-template .cc-process-card {
    min-height: 0;
}

body.home-template .cc-process-card span {
    margin-bottom: 18px;
    font-size: 1.65rem;
}

body.home-template .cc-testimonial-layout {
    display: grid !important;
    grid-template-columns: 0.85fr 1.15fr;
}

body.home-template .cc-testimonial-stack {
    display: grid !important;
    grid-template-columns: 1fr;
}

body.home-template .cc-testimonial-slider {
    min-width: 0;
}

body.home-template .cc-service-card h3,
body.home-template .cc-process-card h3 {
    font-size: 1.08rem;
}

body.home-template .cc-service-card p,
body.home-template .cc-process-card p,
body.home-template .cc-testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.65;
}

body.home-template .cc-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

body.home-template .cc-service-card,
body.home-template .cc-process-card,
body.home-template .cc-testimonial-card {
    padding: 24px;
}

body.home-template .cc-service-card,
body.home-template .cc-process-card,
body.home-template .cc-testimonial-card,
body.home-template .cc-industry-pill,
body.home-template .cc-feature-item {
    animation: cc-soft-rise 700ms ease both;
}

@keyframes cc-soft-rise {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1060px) {
    body.home-template .cc-hero-grid,
    body.home-template .cc-split,
    body.home-template .cc-testimonial-layout {
        grid-template-columns: 1fr;
    }

    body.home-template .cc-services-grid,
    body.home-template .cc-process-grid,
    body.home-template .cc-industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.home-template .cc-process-flow {
        grid-template-columns: repeat(5, minmax(126px, 1fr));
        gap: 12px;
    }

    body.home-template .cc-process-flow::before {
        display: none;
    }

    body.home-template .cc-process-step,
    body.home-template .cc-process-step:nth-child(4),
    body.home-template .cc-process-step:nth-child(5) {
        grid-column: auto;
    }

    body.home-template .cc-process-step:nth-child(2),
    body.home-template .cc-process-step:nth-child(5) {
        margin-top: 0;
    }
}

@media (max-width: 820px) {
    body.home-template .home-page .container,
    body.home-template .site-footer .container {
        width: min(100% - 28px, 1120px) !important;
    }

    body.home-template .cc-hero {
        padding: 58px 0 50px;
    }

    body.home-template .cc-hero h1 {
        font-size: clamp(2rem, 9vw, 2.7rem);
    }

    body.home-template .cc-hero-proof,
    body.home-template .cc-services-grid,
    body.home-template .cc-process-grid,
    body.home-template .cc-process-flow,
    body.home-template .cc-industries-grid,
    body.home-template .cc-feature-panel,
    body.home-template .footer-links-grid,
    body.home-template .footer-main {
        grid-template-columns: 1fr;
    }

    body.home-template .cc-dashboard-visual,
    body.home-template .cc-hero-image-frame {
        min-height: 320px;
    }

    body.home-template .cc-process-flow {
        gap: 24px;
        margin-top: 40px;
        padding-left: 0;
    }

    body.home-template .cc-process-flow::before {
        top: 0;
        bottom: 0;
        left: 26px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, transparent, rgba(255, 217, 120, 0.32), var(--cc-gold), rgba(255, 217, 120, 0.32), transparent);
    }

    body.home-template .cc-process-step {
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        align-items: start;
        gap: 12px;
    }

    body.home-template .cc-process-marker {
        width: 52px;
        height: 52px;
        margin: 0;
    }

    body.home-template .cc-process-marker span {
        font-size: 0.95rem;
    }

    body.home-template .cc-process-content {
        min-height: 0;
        padding: 20px 18px;
    }

    body.home-template .cc-process-content::before {
        top: 22px;
        left: -10px;
        transform: rotate(-45deg);
    }

    body.home-template .cc-hero-copy.reveal,
    body.home-template .cc-hero-visual.reveal {
        transform: translateY(22px);
    }

    body.home-template .cc-hero-copy.reveal.is-visible,
    body.home-template .cc-hero-visual.reveal.is-visible {
        transform: translateY(0);
    }
}

body.home-template .cc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 217, 120, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 217, 120, 0.18) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, #000, transparent 86%);
    animation: cc-grid-drift 18s linear infinite;
}

body.home-template .cc-glow-one {
    animation: cc-glow-one 11s ease-in-out infinite alternate;
}

body.home-template .cc-glow-two {
    animation: cc-glow-two 13s ease-in-out infinite alternate;
}

body.home-template .cc-eyebrow {
    position: relative;
    display: inline-block;
    text-shadow: 0 0 18px rgba(255, 217, 120, 0.28);
}

body.home-template .cc-eyebrow::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cc-gold-light), transparent);
    transform: scaleX(0);
    transform-origin: left;
    animation: cc-line-draw 900ms ease forwards 420ms;
}

body.home-template .cc-hero h1 {
    background: linear-gradient(100deg, var(--cc-cream) 0%, #fff 28%, var(--cc-gold-light) 46%, var(--cc-cream) 68%);
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: cc-title-sheen 7s ease-in-out infinite;
}

body.home-template .btn-primary {
    position: relative;
    overflow: hidden;
}

body.home-template .btn-primary::after {
    content: "";
    position: absolute;
    top: -60%;
    bottom: -60%;
    left: -40%;
    width: 32%;
    transform: rotate(18deg);
    background: rgba(255, 255, 255, 0.38);
    filter: blur(2px);
    animation: cc-button-shine 3.8s ease-in-out infinite;
}

body.home-template .cc-dashboard-visual {
    transform-style: preserve-3d;
    animation: cc-dashboard-float 6.5s ease-in-out infinite;
}

body.home-template .cc-dashboard-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 20%, rgba(255, 217, 120, 0.12), transparent 48%);
    transform: translateX(-100%);
    animation: cc-panel-scan 5.2s ease-in-out infinite;
}

body.home-template .cc-metric-card {
    animation: none;
}

body.home-template .cc-hero-proof div,
body.home-template .cc-service-card,
body.home-template .cc-feature-item,
body.home-template .cc-industry-pill,
body.home-template .cc-process-content,
body.home-template .cc-testimonial-card,
body.home-template .cc-final-cta-inner {
    position: relative;
}

body.home-template .cc-hero-proof div::after,
body.home-template .cc-service-card::after,
body.home-template .cc-feature-item::after,
body.home-template .cc-industry-pill::after,
body.home-template .cc-process-content::after,
body.home-template .cc-testimonial-card::after,
body.home-template .cc-final-cta-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255, 217, 120, 0.16), transparent 34%);
    opacity: 0;
    transition: opacity 220ms ease;
}

body.home-template .cc-hero-proof div:hover::after,
body.home-template .cc-service-card:hover::after,
body.home-template .cc-feature-item:hover::after,
body.home-template .cc-industry-pill:hover::after,
body.home-template .cc-process-content:hover::after,
body.home-template .cc-testimonial-card:hover::after,
body.home-template .cc-final-cta-inner:hover::after {
    opacity: 1;
}

body.home-template .cc-service-card:hover,
body.home-template .cc-feature-item:hover,
body.home-template .cc-industry-pill:hover {
    transform: translateY(-6px);
}

body.home-template .cc-process-marker {
    animation: cc-marker-pulse 3.4s ease-in-out infinite;
}

body.home-template .cc-process-step:nth-child(2) .cc-process-marker { animation-delay: 180ms; }
body.home-template .cc-process-step:nth-child(3) .cc-process-marker { animation-delay: 360ms; }
body.home-template .cc-process-step:nth-child(4) .cc-process-marker { animation-delay: 540ms; }
body.home-template .cc-process-step:nth-child(5) .cc-process-marker { animation-delay: 720ms; }

body.home-template .cc-industries-grid .cc-industry-pill:nth-child(odd) {
    animation-name: cc-soft-rise, cc-float-small;
    animation-duration: 700ms, 5.6s;
    animation-timing-function: ease, ease-in-out;
    animation-iteration-count: 1, infinite;
}

body.home-template .cc-industries-grid .cc-industry-pill:nth-child(even) {
    animation-name: cc-soft-rise, cc-float-small;
    animation-duration: 700ms, 6.4s;
    animation-timing-function: ease, ease-in-out;
    animation-iteration-count: 1, infinite;
    animation-delay: 90ms, 450ms;
}

body.home-template .cc-final-cta {
    background-size: 180% 180%;
    animation: cc-gradient-shift 10s ease-in-out infinite;
}

body.home-template .cc-slider-btn {
    box-shadow: 0 0 0 rgba(255, 217, 120, 0);
}

body.home-template .cc-slider-btn:hover {
    box-shadow: 0 0 26px rgba(255, 217, 120, 0.2);
}

@keyframes cc-grid-drift {
    from { background-position: 0 0, 0 0; }
    to { background-position: 72px 72px, 72px 72px; }
}

@keyframes cc-glow-one {
    from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.28; }
    to { transform: translate3d(80px, 42px, 0) scale(1.12); opacity: 0.4; }
}

@keyframes cc-glow-two {
    from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.28; }
    to { transform: translate3d(-70px, -38px, 0) scale(1.16); opacity: 0.42; }
}

@keyframes cc-line-draw {
    to { transform: scaleX(1); }
}

@keyframes cc-title-sheen {
    0%, 72%, 100% { background-position: 0% 50%; }
    38% { background-position: 100% 50%; }
}

@keyframes cc-button-shine {
    0%, 55% { transform: translateX(0) rotate(18deg); opacity: 0; }
    68% { opacity: 0.65; }
    86%, 100% { transform: translateX(420%) rotate(18deg); opacity: 0; }
}

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

@keyframes cc-panel-scan {
    0%, 50% { transform: translateX(-100%); opacity: 0; }
    64% { opacity: 1; }
    86%, 100% { transform: translateX(100%); opacity: 0; }
}

@keyframes cc-card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes cc-marker-pulse {
    0%, 100% { box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32), 0 0 30px rgba(217, 170, 66, 0.18); }
    50% { box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32), 0 0 54px rgba(217, 170, 66, 0.36); }
}

@keyframes cc-float-small {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes cc-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

/* Homepage polish: stronger reveals and a cleaner process timeline. */
body.home-template .reveal,
body.home-template .cc-service-card,
body.home-template .cc-feature-item,
body.home-template .cc-industry-pill,
body.home-template .cc-process-step,
body.home-template .cc-testimonial-slider,
body.home-template .cc-final-cta-inner {
    opacity: 0;
    transform: translateY(34px) scale(0.975);
    filter: blur(8px);
    transition:
        opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 220ms ease,
        background 220ms ease,
        box-shadow 220ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

body.home-template .reveal.is-visible,
body.home-template .cc-service-card.is-visible,
body.home-template .cc-feature-item.is-visible,
body.home-template .cc-industry-pill.is-visible,
body.home-template .cc-process-step.is-visible,
body.home-template .cc-testimonial-slider.is-visible,
body.home-template .cc-final-cta-inner.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

body.home-template .cc-process {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 12%, rgba(255, 217, 120, 0.1), transparent 30%),
        linear-gradient(180deg, #08060b 0%, #0f0a13 56%, #070609 100%);
}

body.home-template .cc-process::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 217, 120, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 217, 120, 0.035) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
    animation: cc-grid-drift 22s linear infinite;
}

body.home-template .cc-process .container {
    position: relative;
    z-index: 1;
}

body.home-template .cc-process-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 54px;
    padding: 34px 0 0;
}

body.home-template .cc-process-flow::before {
    content: "";
    position: absolute;
    top: 58px;
    left: 9%;
    right: 9%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 217, 120, 0.24), var(--cc-gold), rgba(255, 217, 120, 0.24), transparent);
    box-shadow: 0 0 26px rgba(217, 170, 66, 0.2);
}

body.home-template .cc-process-card {
    position: relative;
    display: grid;
    gap: 22px;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

body.home-template .cc-process-marker {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto;
    border: 1px solid rgba(255, 217, 120, 0.48);
    border-radius: 50%;
    color: #0b0704;
    background: linear-gradient(135deg, #fff3bd 0%, var(--cc-gold-light) 38%, var(--cc-gold) 100%);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34), 0 0 34px rgba(217, 170, 66, 0.26);
}

body.home-template .cc-process-marker span {
    margin: 0;
    color: inherit;
    font-size: 0.96rem;
    font-weight: 950;
}

body.home-template .cc-process-content {
    position: relative;
    min-height: 220px;
    padding: 26px 22px;
    border: 1px solid rgba(255, 217, 120, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 248, 231, 0.08), rgba(255, 248, 231, 0.035)),
        rgba(11, 8, 14, 0.82);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

body.home-template .cc-process-content::before {
    content: "";
    position: absolute;
    top: -8px;
    left: calc(50% - 9px);
    width: 18px;
    height: 18px;
    border-left: 1px solid rgba(255, 217, 120, 0.16);
    border-top: 1px solid rgba(255, 217, 120, 0.16);
    background: rgba(18, 13, 20, 0.96);
    transform: rotate(45deg);
}

body.home-template .cc-process-content h3 {
    margin: 0 0 12px;
    color: var(--cc-cream);
    font-size: 1.16rem;
}

body.home-template .cc-process-content p {
    color: rgba(184, 169, 146, 0.94);
    line-height: 1.75;
}

body.home-template .cc-process-step:hover .cc-process-content {
    border-color: rgba(255, 217, 120, 0.44);
    background:
        linear-gradient(180deg, rgba(255, 217, 120, 0.105), rgba(255, 248, 231, 0.04)),
        rgba(13, 9, 16, 0.92);
    box-shadow: 0 28px 86px rgba(0, 0, 0, 0.36), 0 0 30px rgba(217, 170, 66, 0.1);
}

body.home-template .cc-process-step:hover .cc-process-marker {
    transform: translateY(-4px);
}

body.home-template .cc-service-card:hover,
body.home-template .cc-feature-item:hover,
body.home-template .cc-industry-pill:hover,
body.home-template .cc-testimonial-card:hover {
    transform: translateY(-6px);
}

body.home-template .cc-service-card::after,
body.home-template .cc-feature-item::after,
body.home-template .cc-industry-pill::after,
body.home-template .cc-process-content::after,
body.home-template .cc-testimonial-card::after {
    background:
        radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255, 217, 120, 0.22), transparent 38%),
        linear-gradient(115deg, transparent 20%, rgba(255, 217, 120, 0.1), transparent 46%);
}

@media (max-width: 1060px) {
    body.home-template .cc-process-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    body.home-template .cc-process-flow::before {
        display: none;
    }

    body.home-template .cc-process-marker {
        margin: 0;
    }

    body.home-template .cc-process-content::before {
        left: 22px;
    }
}

@media (max-width: 820px) {
    body.home-template .cc-process-flow {
        grid-template-columns: 1fr;
        padding-top: 0;
    }

    body.home-template .cc-process-step {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 14px;
        align-items: start;
    }

    body.home-template .cc-process-content {
        min-height: 0;
        padding: 22px 18px;
    }

    body.home-template .cc-process-content::before {
        top: 22px;
        left: -9px;
    }
}

body.page-template-template-services {
    background:
        radial-gradient(circle at 18% 6%, rgba(217, 170, 66, 0.13), transparent 30rem),
        radial-gradient(circle at 84% 14%, rgba(102, 53, 165, 0.16), transparent 32rem),
        var(--cc-black);
}

body.page-template-template-about,
.about-page {
    background:
        radial-gradient(circle at 18% 8%, rgba(217, 170, 66, 0.14), transparent 30rem),
        radial-gradient(circle at 84% 18%, rgba(102, 53, 165, 0.14), transparent 32rem),
        var(--cc-black);
}

.cc-about-hero {
    position: relative;
    overflow: hidden;
    padding: 104px 0 86px;
    background:
        linear-gradient(180deg, rgba(20, 10, 28, 0.78), rgba(7, 6, 9, 0.96)),
        radial-gradient(circle at 50% 0%, rgba(255, 217, 120, 0.13), transparent 34rem);
}

.cc-about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 217, 120, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 217, 120, 0.16) 1px, transparent 1px);
    background-size: 76px 76px;
    animation: cc-grid-drift 18s linear infinite;
}

.cc-about-hero-inner {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.cc-about-hero h1 {
    margin: 0;
    color: transparent;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    line-height: 1.04;
    font-weight: 780;
    background: linear-gradient(100deg, var(--cc-cream), #fff, var(--cc-gold-light), var(--cc-cream));
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: cc-title-sheen 7s ease-in-out infinite;
}

.cc-about-hero p:not(.cc-eyebrow) {
    max-width: 660px;
    margin: 22px auto 0;
    color: var(--cc-muted);
    font-size: 1.08rem;
}

.cc-about-overview {
    background: linear-gradient(180deg, rgba(23, 17, 31, 0.98), rgba(9, 7, 12, 0.98));
}

.cc-about-grid,
.cc-about-why-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 52px;
    align-items: center;
}

.cc-about-panel,
.cc-about-value,
.cc-about-checklist,
.cc-about-stats div {
    border: 1px solid var(--cc-line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.07), rgba(255, 248, 231, 0.025));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.cc-about-panel {
    padding: 34px;
}

.cc-about-panel > span,
.cc-about-value > span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--cc-gold-light);
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cc-about-panel h2,
.cc-about-value h2 {
    margin: 0 0 16px;
    color: var(--cc-cream);
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.12;
}

.cc-about-panel p,
.cc-about-value p,
.cc-about-checklist p {
    margin: 0;
    color: var(--cc-muted);
    line-height: 1.75;
}

.cc-about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.cc-about-stats div {
    min-height: 150px;
    padding: 24px;
}

.cc-about-stats strong {
    display: block;
    color: var(--cc-gold-light);
    font-size: 2.15rem;
    line-height: 1;
}

.cc-about-stats span {
    display: block;
    margin-top: 14px;
    color: var(--cc-cream);
    font-weight: 750;
}

.cc-about-values {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 8%, rgba(255, 217, 120, 0.12), transparent 28rem),
        linear-gradient(180deg, #070609 0%, #120c18 54%, #070609 100%);
}

.cc-about-values::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 217, 120, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 217, 120, 0.12) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.cc-about-values-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: 22px;
    padding: 9px 18px;
    border: 1px solid rgba(255, 217, 120, 0.32);
    border-radius: 999px;
    color: #120d05;
    background: linear-gradient(135deg, #fff3bd, var(--cc-gold-light), var(--cc-gold));
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28), 0 0 28px rgba(217, 170, 66, 0.18);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cc-about-compass {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.cc-about-compass::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 217, 120, 0.36), transparent);
    box-shadow: 0 0 30px rgba(255, 217, 120, 0.16);
}

.cc-about-value {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 32px;
    z-index: 1;
    transition: transform var(--cc-ease), border-color var(--cc-ease), box-shadow var(--cc-ease);
}

.cc-about-value:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 217, 120, 0.42);
    box-shadow: 0 28px 86px rgba(0, 0, 0, 0.36), 0 0 34px rgba(217, 170, 66, 0.1);
}

.cc-about-value::after {
    content: "";
    position: absolute;
    inset: auto -20% -34% 26%;
    height: 220px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 217, 120, 0.17), transparent 68%);
}

.cc-about-value-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.cc-about-value-top span {
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 217, 120, 0.34);
    color: #0b0704;
    background: linear-gradient(135deg, #fff3bd, var(--cc-gold-light), var(--cc-gold));
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32), 0 0 34px rgba(217, 170, 66, 0.24);
}

.cc-about-value-top span {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 0.96rem;
    font-weight: 950;
}

.cc-about-value-top p {
    margin: 0;
    color: var(--cc-gold-light);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-align: right;
    text-transform: uppercase;
}

.cc-about-value h3 {
    margin: 0 0 16px;
    color: var(--cc-cream);
    font-size: clamp(1.9rem, 3vw, 2.65rem);
    line-height: 1.04;
}

.cc-about-value ul {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.cc-about-value li {
    position: relative;
    min-height: 42px;
    padding: 10px 12px 10px 36px;
    border: 1px solid rgba(255, 217, 120, 0.12);
    border-radius: 8px;
    color: var(--cc-cream);
    background: rgba(7, 6, 9, 0.34);
    font-weight: 760;
}

.cc-about-value li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cc-gold-light);
    box-shadow: 0 0 18px rgba(255, 217, 120, 0.42);
}

.cc-about-why {
    background: linear-gradient(180deg, rgba(10, 8, 13, 0.98), rgba(23, 17, 31, 0.98));
}

.cc-about-checklist {
    display: grid;
    gap: 14px;
    padding: 20px;
}

.cc-about-checklist div {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 217, 120, 0.12);
    border-radius: 8px;
    background: rgba(7, 6, 9, 0.38);
}

.cc-about-checklist span {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cc-gold-light), var(--cc-gold-deep));
    box-shadow: 0 0 22px rgba(255, 217, 120, 0.24);
}

.cc-about-checklist span::before {
    content: "";
    width: 9px;
    height: 5px;
    border-left: 2px solid #0b0704;
    border-bottom: 2px solid #0b0704;
    transform: rotate(-45deg) translate(1px, -1px);
}

.cc-about-checklist p {
    color: var(--cc-cream);
    font-weight: 760;
}

@media (max-width: 900px) {
    .cc-about-grid,
    .cc-about-why-grid {
        grid-template-columns: 1fr;
    }

    .cc-about-compass {
        grid-template-columns: 1fr;
    }

    .cc-about-compass::before {
        left: 0;
        right: 0;
    }

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

@media (max-width: 640px) {
    .cc-about-hero {
        padding: 76px 0 60px;
    }

    .cc-about-stats {
        grid-template-columns: 1fr;
    }

    .cc-about-panel,
    .cc-about-value {
        padding: 24px;
    }

    .cc-about-value {
        min-height: auto;
    }

    .cc-about-value-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .cc-about-value-top p {
        text-align: left;
    }
}

body.page-template-template-contact,
.contact-page {
    background:
        radial-gradient(circle at 18% 8%, rgba(217, 170, 66, 0.13), transparent 30rem),
        radial-gradient(circle at 84% 18%, rgba(102, 53, 165, 0.13), transparent 32rem),
        var(--cc-black);
}

.cc-contact-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 78px;
    background:
        linear-gradient(180deg, rgba(20, 10, 28, 0.78), rgba(7, 6, 9, 0.96)),
        radial-gradient(circle at 50% 0%, rgba(255, 217, 120, 0.12), transparent 34rem);
}

.cc-contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 217, 120, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 217, 120, 0.16) 1px, transparent 1px);
    background-size: 76px 76px;
    animation: cc-grid-drift 18s linear infinite;
}

.cc-contact-hero-inner {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.cc-contact-hero h1 {
    margin: 0;
    color: transparent;
    font-size: clamp(2.5rem, 5vw, 4.65rem);
    line-height: 1.04;
    font-weight: 780;
    background: linear-gradient(100deg, var(--cc-cream), #fff, var(--cc-gold-light), var(--cc-cream));
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: cc-title-sheen 7s ease-in-out infinite;
}

.cc-contact-hero p:not(.cc-eyebrow) {
    max-width: 660px;
    margin: 22px auto 0;
    color: var(--cc-muted);
    font-size: 1.08rem;
}

.cc-contact-main {
    background: linear-gradient(180deg, rgba(23, 17, 31, 0.98), rgba(9, 7, 12, 0.98));
}

.cc-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 28px;
    align-items: start;
}

.cc-contact-form-card,
.cc-contact-info-card,
.cc-contact-map {
    border: 1px solid var(--cc-line);
    border-radius: var(--cc-radius);
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.07), rgba(255, 248, 231, 0.025));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.cc-contact-form-card,
.cc-contact-info-card {
    padding: 30px;
}

.cc-contact-card-head {
    margin-bottom: 26px;
}

.cc-contact-card-head h2 {
    margin: 0;
    color: var(--cc-cream);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1.12;
}

.cc-contact-card-head p:not(.cc-eyebrow) {
    margin: 14px 0 0;
    color: var(--cc-muted);
}

.cc-contact-notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 760;
}

.cc-contact-notice-success {
    border: 1px solid rgba(111, 220, 162, 0.28);
    color: #c8f7dc;
    background: rgba(46, 138, 88, 0.16);
}

.cc-contact-notice-error {
    border: 1px solid rgba(255, 121, 121, 0.28);
    color: #ffd4d4;
    background: rgba(160, 43, 43, 0.16);
}

.cc-contact-form {
    display: grid;
    gap: 16px;
}

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

.cc-contact-form label {
    display: grid;
    gap: 8px;
}

.cc-contact-form span {
    color: var(--cc-cream);
    font-size: 0.9rem;
    font-weight: 800;
}

.cc-contact-form input,
.cc-contact-form select,
.cc-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 217, 120, 0.16);
    border-radius: 8px;
    color: var(--cc-cream);
    background: rgba(7, 6, 9, 0.44);
    font: inherit;
    outline: none;
    transition: border-color var(--cc-ease), box-shadow var(--cc-ease), background var(--cc-ease);
}

.cc-contact-form input,
.cc-contact-form select {
    min-height: 50px;
    padding: 0 14px;
}

.cc-contact-form textarea {
    min-height: 150px;
    resize: vertical;
    padding: 14px;
}

.cc-contact-form input::placeholder,
.cc-contact-form textarea::placeholder {
    color: rgba(184, 169, 146, 0.72);
}

.cc-contact-form input:focus,
.cc-contact-form select:focus,
.cc-contact-form textarea:focus {
    border-color: rgba(255, 217, 120, 0.5);
    background: rgba(7, 6, 9, 0.62);
    box-shadow: 0 0 0 3px rgba(217, 170, 66, 0.12);
}

.cc-contact-form select option {
    color: #120d05;
}

.cc-contact-form .btn {
    justify-self: start;
    margin-top: 8px;
}

.cc-contact-hp {
    position: absolute;
    left: -9999px;
}

.cc-contact-info-list {
    display: grid;
    gap: 16px;
}

.cc-contact-info-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(255, 217, 120, 0.12);
    border-radius: 8px;
    background: rgba(7, 6, 9, 0.36);
}

.cc-contact-info-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: #0b0704;
    background: linear-gradient(135deg, var(--cc-gold-light), var(--cc-gold));
}

.cc-contact-info-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.cc-contact-info-item h3 {
    margin: 0 0 4px;
    color: var(--cc-gold-light);
    font-size: 0.86rem;
}

.cc-contact-info-item a,
.cc-contact-info-item p {
    display: block;
    margin: 0;
    color: var(--cc-cream);
    text-decoration: none;
    overflow-wrap: anywhere;
}

.cc-contact-info-item a:hover {
    color: var(--cc-gold-light);
}

.cc-contact-map-section {
    background: var(--cc-black);
}

.cc-contact-map {
    overflow: hidden;
    min-height: 420px;
}

.cc-contact-map iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.cc-contact-map-placeholder {
    display: grid;
    place-items: center;
    min-height: 420px;
    padding: 34px;
    text-align: center;
    background:
        linear-gradient(rgba(255, 217, 120, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 217, 120, 0.04) 1px, transparent 1px),
        rgba(7, 6, 9, 0.44);
    background-size: 46px 46px;
}

.cc-contact-map-placeholder strong {
    color: var(--cc-gold-light);
    font-size: 1.25rem;
}

.cc-contact-map-placeholder span {
    margin-top: 8px;
    color: var(--cc-muted);
}

.thank-you-page {
    background:
        radial-gradient(circle at 18% 8%, rgba(217, 170, 66, 0.14), transparent 30rem),
        radial-gradient(circle at 84% 18%, rgba(102, 53, 165, 0.13), transparent 32rem),
        var(--cc-black);
}

.cc-thank-you-hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: calc(100vh - 82px);
    overflow: hidden;
    padding: 96px 0;
    background:
        linear-gradient(180deg, rgba(20, 10, 28, 0.78), rgba(7, 6, 9, 0.96)),
        radial-gradient(circle at 50% 0%, rgba(255, 217, 120, 0.14), transparent 34rem);
}

.cc-thank-you-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 217, 120, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 217, 120, 0.16) 1px, transparent 1px);
    background-size: 76px 76px;
    animation: cc-grid-drift 18s linear infinite;
}

.cc-thank-you-inner {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.cc-thank-you-inner h1 {
    margin: 0;
    color: transparent;
    font-size: clamp(2.45rem, 5vw, 4.55rem);
    line-height: 1.04;
    font-weight: 780;
    background: linear-gradient(100deg, var(--cc-cream), #fff, var(--cc-gold-light), var(--cc-cream));
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: cc-title-sheen 7s ease-in-out infinite;
}

.cc-thank-you-inner p:not(.cc-eyebrow) {
    max-width: 620px;
    margin: 22px auto 0;
    color: var(--cc-muted);
    font-size: 1.08rem;
}

.cc-thank-you-inner .cc-actions {
    justify-content: center;
}

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

@media (max-width: 640px) {
    .cc-contact-hero {
        padding: 76px 0 60px;
    }

    .cc-contact-form-card,
    .cc-contact-info-card {
        padding: 22px;
    }

    .cc-form-row {
        grid-template-columns: 1fr;
    }

    .cc-contact-form .btn {
        width: 100%;
    }

    .cc-contact-map,
    .cc-contact-map iframe,
    .cc-contact-map-placeholder {
        min-height: 320px;
    }
}

.services-page .container {
    width: min(1120px, calc(100% - 40px));
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.cc-services-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 96px 0 82px;
    background:
        linear-gradient(180deg, rgba(20, 10, 28, 0.8), rgba(7, 6, 9, 0.96)),
        radial-gradient(circle at 50% 0%, rgba(255, 217, 120, 0.12), transparent 36rem);
}

.cc-services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 217, 120, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 217, 120, 0.16) 1px, transparent 1px);
    background-size: 76px 76px;
    animation: cc-grid-drift 18s linear infinite;
}

.cc-services-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.cc-services-hero h1 {
    margin: 0;
    color: transparent;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 1.02;
    font-weight: 760;
    background: linear-gradient(100deg, var(--cc-cream), #fff, var(--cc-gold-light), var(--cc-cream));
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: cc-title-sheen 7s ease-in-out infinite;
}

.cc-services-hero p {
    max-width: 650px;
    margin: 20px auto 0;
    color: var(--cc-muted);
}

.cc-services-hero .cc-actions {
    justify-content: center;
}

.cc-services-overview {
    background: linear-gradient(180deg, rgba(23, 17, 31, 0.98), rgba(9, 7, 12, 0.98));
}

.cc-services-overview-grid,
.cc-benefits-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 52px;
    align-items: center;
}

.cc-overview-panel {
    position: relative;
    padding: 30px;
    border: 1px solid var(--cc-line);
    border-radius: var(--cc-radius);
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.06), rgba(255, 248, 231, 0.025));
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
}

.cc-overview-panel p {
    margin: 0;
    color: var(--cc-muted);
    font-size: 1rem;
}

.cc-service-page-list {
    background: var(--cc-black);
}

.cc-service-page-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.cc-service-page-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--cc-line);
    border-radius: var(--cc-radius);
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.06), rgba(255, 248, 231, 0.025));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    transition: transform var(--cc-ease), border-color var(--cc-ease), box-shadow var(--cc-ease);
}

.cc-service-page-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.cc-service-page-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    opacity: 0;
    background: linear-gradient(90deg, transparent, var(--cc-gold-light), transparent);
    transition: opacity var(--cc-ease);
}

.cc-service-page-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 217, 120, 0.42);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
}

.cc-service-page-card:hover::before {
    opacity: 1;
}

.cc-service-page-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 217, 120, 0.15), rgba(102, 53, 165, 0.14));
}

.cc-service-page-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms ease;
}

.cc-service-page-card:hover img {
    transform: none;
}

.cc-service-page-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 68% 28%, rgba(255, 217, 120, 0.28), transparent 7rem),
        linear-gradient(145deg, rgba(31, 20, 42, 0.92), rgba(8, 6, 11, 0.94));
}

.cc-service-page-placeholder span {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    border: 1px solid rgba(255, 217, 120, 0.28);
    border-radius: 50%;
    color: var(--cc-gold-light);
    font-size: 1.35rem;
    font-weight: 850;
    box-shadow: 0 0 42px rgba(255, 217, 120, 0.2);
    animation: cc-marker-pulse 3.8s ease-in-out infinite;
}

.cc-service-page-card-body {
    padding: 24px;
}

.cc-service-page-card-body > span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 217, 120, 0.22);
    border-radius: 50%;
    color: var(--cc-gold-light);
    background: rgba(255, 217, 120, 0.08);
    font-size: 0.82rem;
    font-weight: 850;
}

.cc-service-page-card-body h3 {
    margin: 0 0 12px;
    color: var(--cc-cream);
    font-size: 1.15rem;
}

.cc-service-page-card-body p {
    margin: 0;
    color: var(--cc-muted);
    font-size: 0.92rem;
}

.cc-seoz-services {
    background:
        radial-gradient(circle at 16% 8%, rgba(217, 170, 66, 0.12), transparent 28rem),
        radial-gradient(circle at 90% 18%, rgba(102, 53, 165, 0.11), transparent 30rem),
        var(--cc-black);
}

.cc-seoz-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 100px 0 86px;
    background:
        linear-gradient(180deg, rgba(20, 10, 28, 0.84), rgba(7, 6, 9, 0.96)),
        radial-gradient(circle at 76% 18%, rgba(255, 217, 120, 0.15), transparent 28rem);
}

.cc-seoz-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(255, 217, 120, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 217, 120, 0.14) 1px, transparent 1px);
    background-size: 72px 72px;
    animation: cc-grid-drift 24s linear infinite;
}

.cc-seoz-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: 56px;
    align-items: center;
}

.cc-seoz-hero-copy h1 {
    margin: 0;
    color: transparent;
    font-size: clamp(2.5rem, 5vw, 4.75rem);
    line-height: 1.04;
    font-weight: 780;
    background: linear-gradient(100deg, var(--cc-cream), #fff, var(--cc-gold-light), var(--cc-cream));
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: cc-title-sheen 8s ease-in-out infinite;
}

.cc-seoz-hero-copy p:not(.cc-eyebrow) {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--cc-muted);
    font-size: 1.08rem;
}

.cc-seoz-hero-copy .cc-actions {
    justify-content: flex-start;
}

.cc-seoz-hero-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(255, 217, 120, 0.2);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.075), rgba(255, 248, 231, 0.028));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    animation: cc-dashboard-float 7s ease-in-out infinite;
}

.cc-seoz-hero-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -54px;
    top: -54px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 217, 120, 0.22), transparent 68%);
}

.cc-seoz-hero-card > span {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 217, 120, 0.22);
    border-radius: 999px;
    color: var(--cc-gold-light);
    font-size: 0.78rem;
    font-weight: 900;
}

.cc-seoz-hero-card strong {
    display: block;
    color: var(--cc-cream);
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    line-height: 1.08;
}

.cc-seoz-hero-card p {
    margin: 16px 0 0;
    color: var(--cc-muted);
}

.cc-seoz-mini-list {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.cc-seoz-mini-list div,
.cc-seoz-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 13px 14px;
    border: 1px solid rgba(255, 217, 120, 0.13);
    border-radius: 8px;
    color: var(--cc-cream);
    background: rgba(7, 6, 9, 0.38);
}

.cc-seoz-mini-list span,
.cc-seoz-feature span {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--cc-gold-light);
    box-shadow: 0 0 18px rgba(255, 217, 120, 0.5);
}

.cc-seoz-service-section {
    background: linear-gradient(180deg, rgba(9, 7, 12, 0.98), rgba(17, 12, 23, 0.98));
}

.cc-seoz-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.cc-seoz-service-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid rgba(255, 217, 120, 0.16);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.07), rgba(255, 248, 231, 0.025));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.cc-seoz-service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    opacity: 0;
    background: linear-gradient(90deg, var(--cc-gold-deep), var(--cc-gold-light));
    transition: opacity 220ms ease;
}

.cc-seoz-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 217, 120, 0.42);
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.09), rgba(255, 248, 231, 0.035));
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.cc-seoz-service-card:hover::before {
    opacity: 1;
}

.cc-seoz-service-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px;
    color: inherit;
    text-decoration: none;
}

.cc-seoz-service-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 217, 120, 0.24);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 217, 120, 0.26), rgba(255, 217, 120, 0.08));
    box-shadow: 0 0 42px rgba(255, 217, 120, 0.14);
}

.cc-seoz-service-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.cc-seoz-service-icon span {
    color: var(--cc-gold-light);
    font-size: 0.88rem;
    font-weight: 900;
}

.cc-seoz-service-kicker {
    color: var(--cc-gold-light);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.cc-seoz-service-card h3 {
    margin: 12px 0 12px;
    color: var(--cc-cream);
    font-size: 1.18rem;
    line-height: 1.18;
}

.cc-seoz-service-card p {
    margin: 0;
    color: var(--cc-muted);
    font-size: 0.93rem;
}

.cc-seoz-service-card strong {
    margin-top: auto;
    padding-top: 22px;
    color: var(--cc-gold-light);
    font-size: 0.9rem;
}

.cc-seoz-process {
    background:
        linear-gradient(rgba(255, 217, 120, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 217, 120, 0.035) 1px, transparent 1px),
        var(--cc-black);
    background-size: 76px 76px;
}

.cc-seoz-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.cc-seoz-process-card {
    position: relative;
    padding: 26px;
    border: 1px solid rgba(255, 217, 120, 0.15);
    border-radius: 8px;
    background: rgba(255, 248, 231, 0.045);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.cc-seoz-process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 217, 120, 0.36);
    background: rgba(255, 248, 231, 0.07);
}

.cc-seoz-process-card span {
    color: var(--cc-gold-light);
    font-size: 0.9rem;
    font-weight: 900;
}

.cc-seoz-process-card h3 {
    margin: 18px 0 10px;
    color: var(--cc-cream);
    font-size: 1.12rem;
}

.cc-seoz-process-card p {
    margin: 0;
    color: var(--cc-muted);
    font-size: 0.92rem;
}

.cc-seoz-why {
    background: linear-gradient(180deg, rgba(17, 12, 23, 0.98), rgba(7, 6, 9, 0.98));
}

.cc-seoz-why-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 52px;
    align-items: center;
}

.cc-seoz-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cc-seoz-feature p {
    margin: 0;
    color: var(--cc-cream);
}

.cc-seoz-detail {
    background:
        radial-gradient(circle at 14% 8%, rgba(217, 170, 66, 0.12), transparent 28rem),
        radial-gradient(circle at 88% 20%, rgba(102, 53, 165, 0.1), transparent 30rem),
        var(--cc-black);
}

.cc-seoz-detail .container {
    width: min(1120px, calc(100% - 40px));
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.cc-seoz-detail-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 104px 0 88px;
    background:
        linear-gradient(180deg, rgba(20, 10, 28, 0.84), rgba(7, 6, 9, 0.96)),
        radial-gradient(circle at 72% 24%, rgba(255, 217, 120, 0.15), transparent 30rem);
}

.cc-seoz-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 217, 120, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 217, 120, 0.14) 1px, transparent 1px);
    background-size: 74px 74px;
    animation: cc-grid-drift 24s linear infinite;
}

.cc-seoz-detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: 58px;
    align-items: center;
}

.cc-seoz-detail-copy h1 {
    margin: 0;
    color: transparent;
    font-size: clamp(2.45rem, 5vw, 4.7rem);
    line-height: 1.04;
    font-weight: 780;
    background: linear-gradient(100deg, var(--cc-cream), #fff, var(--cc-gold-light), var(--cc-cream));
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: cc-title-sheen 8s ease-in-out infinite;
}

.cc-seoz-detail-copy p:not(.cc-eyebrow) {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--cc-muted);
    font-size: 1.08rem;
}

.cc-seoz-detail-copy .cc-actions {
    justify-content: flex-start;
}

.cc-seoz-detail-panel {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    padding: 30px;
    border: 1px solid rgba(255, 217, 120, 0.2);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.075), rgba(255, 248, 231, 0.026));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    animation: cc-dashboard-float 7s ease-in-out infinite;
}

.cc-seoz-detail-panel::before {
    content: "";
    position: absolute;
    inset: 74px 34px auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 217, 120, 0.38), transparent);
}

.cc-detail-panel-head {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.cc-detail-panel-head span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 217, 120, 0.22);
    border-radius: 999px;
    color: var(--cc-gold-light);
    font-size: 0.78rem;
    font-weight: 900;
}

.cc-detail-panel-head strong {
    color: var(--cc-cream);
    font-size: 0.94rem;
}

.cc-detail-flow {
    position: relative;
    height: 148px;
    margin: 54px 0 34px;
}

.cc-detail-flow::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 217, 120, 0.1), rgba(255, 217, 120, 0.55), rgba(255, 217, 120, 0.1));
}

.cc-detail-flow i {
    position: absolute;
    top: 50%;
    display: block;
    width: 62px;
    height: 62px;
    margin-top: -31px;
    border: 1px solid rgba(255, 217, 120, 0.34);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 217, 120, 0.28), rgba(255, 217, 120, 0.08));
    box-shadow: 0 0 34px rgba(255, 217, 120, 0.18);
    animation: cc-detail-pulse 3.4s ease-in-out infinite;
}

.cc-detail-flow i:nth-child(1) {
    left: 5%;
}

.cc-detail-flow i:nth-child(2) {
    left: calc(50% - 31px);
    animation-delay: 220ms;
}

.cc-detail-flow i:nth-child(3) {
    right: 5%;
    animation-delay: 440ms;
}

.cc-detail-panel-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
}

.cc-detail-panel-list div {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 13px 14px;
    border: 1px solid rgba(255, 217, 120, 0.13);
    border-radius: 8px;
    background: rgba(7, 6, 9, 0.42);
}

.cc-detail-panel-list span {
    color: var(--cc-gold-light);
    font-weight: 900;
}

.cc-detail-panel-list p {
    margin: 0;
    color: var(--cc-cream);
    font-weight: 780;
}

.cc-seoz-detail-image-panel {
    position: relative;
    min-height: 420px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 217, 120, 0.22);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.075), rgba(255, 248, 231, 0.026));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    animation: cc-dashboard-float 7s ease-in-out infinite;
}

.cc-seoz-detail-image-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(7, 6, 9, 0.08), rgba(7, 6, 9, 0.58)),
        radial-gradient(circle at 72% 20%, rgba(255, 217, 120, 0.18), transparent 14rem);
}

.cc-seoz-detail-image-panel img {
    display: block;
    width: 100%;
    min-height: 420px;
    height: 100%;
    object-fit: cover;
    transform: none;
    transition: filter 260ms ease;
}

.cc-seoz-detail-image-panel:hover img {
    transform: none;
    filter: saturate(1.06) contrast(1.04);
}

.cc-seoz-detail-image-badge {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 26px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(255, 217, 120, 0.22);
    border-radius: 8px;
    background: rgba(7, 6, 9, 0.68);
    backdrop-filter: blur(14px);
}

.cc-seoz-detail-image-badge span,
.cc-seoz-detail-image-badge strong {
    color: var(--cc-cream);
    font-size: 0.86rem;
    font-weight: 900;
}

.cc-seoz-detail-image-badge span {
    color: var(--cc-gold-light);
}

.cc-seoz-detail-overview {
    background: linear-gradient(180deg, rgba(9, 7, 12, 0.98), rgba(17, 12, 23, 0.98));
}

.cc-seoz-detail-overview-grid,
.cc-seoz-detail-outcomes-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 52px;
    align-items: center;
}

.cc-seoz-detail-note {
    padding: 32px;
    border: 1px solid rgba(255, 217, 120, 0.16);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.065), rgba(255, 248, 231, 0.024));
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.cc-seoz-detail-note p {
    margin: 0;
    color: var(--cc-muted);
    font-size: 1rem;
}

.cc-seoz-detail-services {
    background:
        linear-gradient(rgba(255, 217, 120, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 217, 120, 0.035) 1px, transparent 1px),
        var(--cc-black);
    background-size: 76px 76px;
}

.cc-seoz-detail-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.cc-seoz-detail-card {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    min-height: 176px;
    padding: 24px;
    border: 1px solid rgba(255, 217, 120, 0.15);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.065), rgba(255, 248, 231, 0.024));
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.cc-seoz-detail-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 217, 120, 0.38);
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.09), rgba(255, 248, 231, 0.035));
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}

.cc-seoz-detail-card > span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 217, 120, 0.24);
    border-radius: 50%;
    color: var(--cc-gold-light);
    background: rgba(255, 217, 120, 0.08);
    font-size: 0.84rem;
    font-weight: 900;
}

.cc-seoz-detail-card h3 {
    margin: 0 0 10px;
    color: var(--cc-cream);
    font-size: 1.15rem;
}

.cc-seoz-detail-card p {
    margin: 0;
    color: var(--cc-muted);
    font-size: 0.94rem;
}

.cc-seoz-detail-outcomes {
    background: linear-gradient(180deg, rgba(17, 12, 23, 0.98), rgba(7, 6, 9, 0.98));
}

.cc-seoz-detail-outcome-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cc-seoz-detail-outcome {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px 16px;
    border: 1px solid rgba(255, 217, 120, 0.13);
    border-radius: 8px;
    background: rgba(255, 248, 231, 0.045);
}

.cc-seoz-detail-outcome span {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--cc-gold-light);
    box-shadow: 0 0 18px rgba(255, 217, 120, 0.5);
}

.cc-seoz-detail-outcome p {
    margin: 0;
    color: var(--cc-cream);
}

.cc-blog-page,
.cc-single-page {
    background:
        radial-gradient(circle at 16% 8%, rgba(217, 170, 66, 0.12), transparent 28rem),
        radial-gradient(circle at 88% 18%, rgba(102, 53, 165, 0.1), transparent 30rem),
        var(--cc-black);
}

.cc-blog-hero,
.cc-single-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 96px 0 78px;
    background:
        linear-gradient(180deg, rgba(20, 10, 28, 0.84), rgba(7, 6, 9, 0.96)),
        radial-gradient(circle at 75% 18%, rgba(255, 217, 120, 0.15), transparent 30rem);
}

.cc-blog-hero::before,
.cc-single-hero::before,
.cc-footer-blog-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 217, 120, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 217, 120, 0.14) 1px, transparent 1px);
    background-size: 74px 74px;
    animation: cc-grid-drift 24s linear infinite;
}

.cc-blog-hero-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.cc-blog-hero h1,
.cc-single-hero h1 {
    margin: 0;
    color: transparent;
    font-size: clamp(2.45rem, 5vw, 4.65rem);
    line-height: 1.04;
    font-weight: 780;
    background: linear-gradient(100deg, var(--cc-cream), #fff, var(--cc-gold-light), var(--cc-cream));
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: cc-title-sheen 8s ease-in-out infinite;
}

.cc-blog-hero p,
.cc-single-hero-copy > p {
    max-width: 680px;
    margin: 22px auto 0;
    color: var(--cc-muted);
    font-size: 1.06rem;
}

.cc-blog-archive {
    background: linear-gradient(180deg, rgba(9, 7, 12, 0.98), rgba(17, 12, 23, 0.98));
}

.cc-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.cc-blog-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 217, 120, 0.16);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.07), rgba(255, 248, 231, 0.025));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.cc-blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 217, 120, 0.42);
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.09), rgba(255, 248, 231, 0.035));
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.cc-blog-card a {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    color: inherit;
    text-decoration: none;
}

.cc-blog-card-media {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background:
        radial-gradient(circle at 66% 26%, rgba(255, 217, 120, 0.3), transparent 7rem),
        linear-gradient(145deg, rgba(31, 20, 42, 0.94), rgba(8, 6, 11, 0.96));
}

.cc-blog-card-media img,
.cc-single-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-blog-card-media span,
.cc-single-hero-media span {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border: 1px solid rgba(255, 217, 120, 0.32);
    border-radius: 50%;
    color: var(--cc-gold-light);
    background: rgba(255, 217, 120, 0.08);
    box-shadow: 0 0 48px rgba(255, 217, 120, 0.2);
    font-size: 2rem;
    font-weight: 900;
}

.cc-blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.cc-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: var(--cc-gold-light);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.cc-blog-meta span {
    display: inline-flex;
    padding: 6px 9px;
    border: 1px solid rgba(255, 217, 120, 0.16);
    border-radius: 999px;
    background: rgba(255, 217, 120, 0.06);
}

.cc-blog-card h2,
.cc-blog-card h3 {
    margin: 16px 0 10px;
    color: var(--cc-cream);
    font-size: 1.18rem;
    line-height: 1.22;
}

.cc-blog-card p {
    margin: 0;
    color: var(--cc-muted);
    font-size: 0.94rem;
}

.cc-blog-card strong {
    margin-top: auto;
    padding-top: 22px;
    color: var(--cc-gold-light);
    font-size: 0.9rem;
}

.cc-blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.cc-blog-pagination .page-numbers {
    display: inline-flex;
    min-width: 38px;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 217, 120, 0.18);
    border-radius: 8px;
    color: var(--cc-cream);
    text-decoration: none;
    background: rgba(255, 248, 231, 0.04);
}

.cc-blog-pagination .current {
    color: #161006;
    background: linear-gradient(135deg, var(--cc-gold-light), var(--cc-gold-deep));
}

.cc-single-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 56px;
    align-items: center;
}

.cc-single-hero-copy .cc-blog-meta {
    margin-top: 24px;
}

.cc-single-hero-media {
    display: grid;
    place-items: center;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid rgba(255, 217, 120, 0.2);
    border-radius: 8px;
    background:
        radial-gradient(circle at 70% 24%, rgba(255, 217, 120, 0.26), transparent 8rem),
        linear-gradient(145deg, rgba(255, 248, 231, 0.07), rgba(255, 248, 231, 0.026));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    animation: cc-dashboard-float 7s ease-in-out infinite;
}

.cc-single-content-section {
    background: linear-gradient(180deg, rgba(9, 7, 12, 0.98), rgba(17, 12, 23, 0.98));
}

.cc-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 42px;
    align-items: start;
}

.cc-single-content {
    padding: 36px;
    border: 1px solid rgba(255, 217, 120, 0.15);
    border-radius: 8px;
    background: rgba(255, 248, 231, 0.045);
}

.cc-single-content > *:first-child {
    margin-top: 0;
}

.cc-single-content h2,
.cc-single-content h3 {
    margin: 34px 0 14px;
    color: var(--cc-cream);
    line-height: 1.18;
}

.cc-single-content p,
.cc-single-content li {
    color: var(--cc-muted);
    font-size: 1.02rem;
}

.cc-single-content a {
    color: var(--cc-gold-light);
}

.cc-single-sidebar {
    position: sticky;
    top: 144px;
    display: grid;
    gap: 18px;
}

.cc-sidebar-box {
    padding: 24px;
    border: 1px solid rgba(255, 217, 120, 0.15);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.065), rgba(255, 248, 231, 0.025));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.cc-sidebar-box h2 {
    margin: 0 0 18px;
    color: var(--cc-cream);
    font-size: 1.25rem;
}

.cc-sidebar-posts {
    display: grid;
    gap: 12px;
}

.cc-sidebar-posts a {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 217, 120, 0.12);
    border-radius: 8px;
    color: inherit;
    text-decoration: none;
    background: rgba(7, 6, 9, 0.36);
}

.cc-sidebar-posts span {
    color: var(--cc-gold-light);
    font-size: 0.78rem;
    font-weight: 850;
}

.cc-sidebar-posts strong {
    color: var(--cc-cream);
    line-height: 1.25;
}

.cc-sidebar-cta p {
    margin: 0 0 18px;
    color: var(--cc-muted);
}

.cc-footer-blog-strip {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(17, 12, 23, 0.98), rgba(7, 6, 9, 0.98));
}

.cc-footer-blog-grid {
    margin-top: 28px;
}

.cc-footer-blog-action {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.cc-blog-empty {
    max-width: 620px;
    margin: 0 auto;
    padding: 36px;
    border: 1px solid rgba(255, 217, 120, 0.15);
    border-radius: 8px;
    text-align: center;
    background: rgba(255, 248, 231, 0.045);
}

.cc-blog-empty h2 {
    margin: 0 0 10px;
    color: var(--cc-cream);
}

.cc-blog-empty p {
    margin: 0;
    color: var(--cc-muted);
}

@media (max-width: 980px) {
    .cc-blog-grid,
    .cc-single-hero-grid,
    .cc-single-layout {
        grid-template-columns: 1fr;
    }

    .cc-single-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .cc-blog-hero,
    .cc-single-hero {
        padding: 76px 0 58px;
    }

    .cc-single-content,
    .cc-sidebar-box {
        padding: 22px;
    }

    .cc-single-hero-media {
        min-height: 260px;
    }
}

@keyframes cc-detail-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.82;
    }
    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}

@media (max-width: 980px) {
    .cc-seoz-hero-grid,
    .cc-seoz-why-grid,
    .cc-seoz-detail-hero-grid,
    .cc-seoz-detail-overview-grid,
    .cc-seoz-detail-outcomes-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .cc-seoz-hero {
        padding: 78px 0 62px;
    }

    .cc-seoz-service-grid,
    .cc-seoz-process-grid,
    .cc-seoz-feature-list,
    .cc-seoz-detail-card-grid,
    .cc-seoz-detail-outcome-list {
        grid-template-columns: 1fr;
    }

    .cc-seoz-hero-card,
    .cc-seoz-service-card a,
    .cc-seoz-process-card,
    .cc-seoz-detail-panel,
    .cc-seoz-detail-note,
    .cc-seoz-detail-card {
        padding: 22px;
    }

    .cc-seoz-detail-hero {
        padding: 78px 0 62px;
    }

    .cc-seoz-detail-panel {
        min-height: 360px;
    }

    .cc-seoz-detail-image-panel,
    .cc-seoz-detail-image-panel img {
        min-height: 360px;
    }

    .cc-seoz-detail-image-badge {
        left: 20px;
        right: 20px;
        bottom: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cc-seoz-detail-card {
        grid-template-columns: 1fr;
    }
}

.cc-services-lab {
    background:
        radial-gradient(circle at 12% 10%, rgba(217, 170, 66, 0.1), transparent 26rem),
        radial-gradient(circle at 90% 28%, rgba(102, 53, 165, 0.12), transparent 28rem),
        var(--cc-black);
}

.cc-services-lab-hero {
    padding: 104px 0 92px;
}

.cc-services-lab-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
    gap: 68px;
    align-items: center;
}

.cc-services-lab-copy h1 {
    margin: 0;
    color: transparent;
    font-size: clamp(2.7rem, 5.2vw, 5rem);
    line-height: 1.01;
    font-weight: 780;
    background: linear-gradient(100deg, var(--cc-cream), #fff, var(--cc-gold-light), var(--cc-cream));
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: cc-title-sheen 7s ease-in-out infinite;
}

.cc-services-lab-copy p:not(.cc-eyebrow) {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--cc-muted);
    font-size: 1.08rem;
}

.cc-services-lab-copy .cc-actions {
    justify-content: flex-start;
}

.cc-services-radar {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 500px;
    border: 1px solid rgba(255, 217, 120, 0.2);
    border-radius: 8px;
    background:
        radial-gradient(circle at center, rgba(255, 217, 120, 0.12), transparent 7rem),
        linear-gradient(145deg, rgba(255, 248, 231, 0.065), rgba(255, 248, 231, 0.02));
    box-shadow: var(--cc-shadow);
    overflow: hidden;
}

.cc-services-radar::before,
.cc-services-radar::after {
    content: "";
    position: absolute;
    inset: 52px;
    border: 1px solid rgba(255, 217, 120, 0.12);
    border-radius: 50%;
}

.cc-services-radar::after {
    inset: 116px;
    border-style: dashed;
    animation: cc-radar-spin 18s linear infinite;
}

.cc-radar-core {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 132px;
    height: 132px;
    border: 1px solid rgba(255, 217, 120, 0.34);
    border-radius: 50%;
    color: #161006;
    background: linear-gradient(135deg, var(--cc-gold-light), var(--cc-gold-deep));
    box-shadow: 0 0 70px rgba(255, 217, 120, 0.22);
    font-weight: 900;
}

.cc-radar-node {
    position: absolute;
    z-index: 3;
    display: grid;
    gap: 2px;
    min-width: 128px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 217, 120, 0.22);
    border-radius: 8px;
    color: var(--cc-cream);
    text-decoration: none;
    background: rgba(7, 6, 9, 0.78);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.cc-radar-node span {
    color: var(--cc-gold-light);
    font-size: 0.76rem;
    font-weight: 900;
}

.cc-radar-node strong {
    font-size: 0.94rem;
}

.cc-radar-node:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 217, 120, 0.48);
    background: rgba(255, 248, 231, 0.08);
}

.cc-radar-node-1 {
    top: 58px;
    left: 50%;
    transform: translateX(-50%);
}

.cc-radar-node-2 {
    top: 50%;
    right: 34px;
    transform: translateY(-50%);
}

.cc-radar-node-3 {
    bottom: 58px;
    left: 50%;
    transform: translateX(-50%);
}

.cc-radar-node-4 {
    top: 50%;
    left: 34px;
    transform: translateY(-50%);
}

.cc-radar-node-1:hover,
.cc-radar-node-3:hover {
    transform: translateX(-50%) translateY(-5px);
}

.cc-radar-node-2:hover,
.cc-radar-node-4:hover {
    transform: translateY(-50%) translateY(-5px);
}

.cc-services-lab-overview {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 52px;
    align-items: center;
}

.cc-services-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.cc-services-metrics div {
    padding: 18px;
    border: 1px solid rgba(255, 217, 120, 0.14);
    border-radius: 8px;
    background: rgba(7, 6, 9, 0.42);
}

.cc-services-metrics strong {
    display: block;
    color: var(--cc-gold-light);
    font-size: 1.7rem;
    line-height: 1;
}

.cc-services-metrics span {
    display: block;
    margin-top: 10px;
    color: var(--cc-cream);
    font-weight: 850;
}

.cc-services-metrics p {
    margin-top: 6px;
    font-size: 0.84rem;
}

.cc-services-lab-stack {
    background:
        linear-gradient(rgba(255, 217, 120, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 217, 120, 0.035) 1px, transparent 1px),
        var(--cc-black);
    background-size: 72px 72px;
}

.cc-services-lab-stack-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.cc-services-index {
    position: sticky;
    top: 150px;
    padding: 28px;
    border: 1px solid rgba(255, 217, 120, 0.18);
    border-radius: 8px;
    background: rgba(12, 9, 16, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.cc-services-index h2 {
    margin: 0;
    color: var(--cc-cream);
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.08;
}

.cc-services-index p:not(.cc-eyebrow) {
    margin: 16px 0 0;
    color: var(--cc-muted);
}

.cc-services-index nav {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.cc-services-index nav a {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 13px;
    border: 1px solid rgba(255, 217, 120, 0.12);
    border-radius: 8px;
    color: var(--cc-cream);
    text-decoration: none;
    background: rgba(255, 248, 231, 0.035);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cc-services-index nav a:hover {
    transform: translateX(4px);
    border-color: rgba(255, 217, 120, 0.34);
    background: rgba(255, 217, 120, 0.08);
}

.cc-services-index nav span {
    color: var(--cc-gold-light);
    font-weight: 900;
}

.cc-services-showcase {
    display: grid;
    gap: 22px;
}

.cc-services-showcase-card {
    min-height: 300px;
}

.cc-services-showcase-card .cc-service-page-card-link {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    min-height: 300px;
}

.cc-services-showcase-card .cc-service-page-media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 300px;
}

.cc-services-showcase-card .cc-service-page-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
}

.cc-services-showcase-card .cc-service-page-card-body > span {
    display: inline-flex;
    width: auto;
    max-width: max-content;
    height: auto;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    line-height: 1;
}

.cc-services-showcase-card h3 {
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    line-height: 1.06;
}

.cc-services-showcase-card p {
    max-width: 620px;
    font-size: 1rem;
}

.cc-services-showcase-card strong:last-child {
    margin-top: 24px;
    color: var(--cc-gold-light);
    font-size: 0.9rem;
}

.cc-services-process {
    background: linear-gradient(180deg, rgba(23, 17, 31, 0.96), rgba(8, 6, 11, 0.98));
}

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

.cc-services-process-step {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(255, 217, 120, 0.16);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.06), rgba(255, 248, 231, 0.025));
}

.cc-services-process-step::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--cc-gold-deep), var(--cc-gold-light));
    opacity: 0.75;
}

.cc-services-process-step span {
    color: var(--cc-gold-light);
    font-size: 0.84rem;
    font-weight: 900;
}

.cc-services-process-step h3 {
    margin: 18px 0 10px;
    color: var(--cc-cream);
    font-size: 1.08rem;
}

.cc-services-process-step p {
    margin: 0;
    color: var(--cc-muted);
    font-size: 0.9rem;
}

@keyframes cc-radar-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
    .cc-services-lab-hero-grid,
    .cc-services-lab-overview,
    .cc-services-lab-stack-grid {
        grid-template-columns: 1fr;
    }

    .cc-services-index {
        position: relative;
        top: auto;
    }

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

@media (max-width: 700px) {
    .cc-services-lab-hero {
        padding: 78px 0 62px;
    }

    .cc-services-radar {
        min-height: 420px;
    }

    .cc-radar-node {
        min-width: 106px;
        padding: 10px 11px;
    }

    .cc-radar-node-2 {
        right: 14px;
    }

    .cc-radar-node-4 {
        left: 14px;
    }

    .cc-services-metrics,
    .cc-services-showcase-card .cc-service-page-card-link,
    .cc-services-process-grid {
        grid-template-columns: 1fr;
    }

    .cc-services-showcase-card .cc-service-page-media {
        min-height: 220px;
    }
}

.service-detail-page .container {
    width: min(1120px, calc(100% - 40px));
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.cc-service-detail-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 104px 0 90px;
    background:
        radial-gradient(circle at 16% 10%, rgba(255, 217, 120, 0.16), transparent 28rem),
        radial-gradient(circle at 90% 24%, rgba(102, 53, 165, 0.18), transparent 30rem),
        linear-gradient(180deg, rgba(20, 10, 28, 0.84), rgba(7, 6, 9, 0.96));
}

.cc-service-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 217, 120, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 217, 120, 0.16) 1px, transparent 1px);
    background-size: 76px 76px;
    animation: cc-grid-drift 18s linear infinite;
}

.cc-service-orb {
    position: absolute;
    z-index: -1;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    filter: blur(54px);
    opacity: 0.36;
}

.cc-service-orb-one {
    left: -7rem;
    top: 12%;
    background: rgba(217, 170, 66, 0.46);
    animation: cc-glow-one 11s ease-in-out infinite alternate;
}

.cc-service-orb-two {
    right: -8rem;
    bottom: -4rem;
    background: rgba(102, 53, 165, 0.5);
    animation: cc-glow-two 13s ease-in-out infinite alternate;
}

.cc-service-detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: 56px;
    align-items: center;
}

.cc-service-detail-copy h1 {
    margin: 0;
    color: transparent;
    font-size: clamp(2.55rem, 5vw, 4.7rem);
    line-height: 1.02;
    font-weight: 780;
    background: linear-gradient(100deg, var(--cc-cream), #fff, var(--cc-gold-light), var(--cc-cream));
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: cc-title-sheen 7s ease-in-out infinite;
}

.cc-service-detail-copy p:not(.cc-eyebrow) {
    max-width: 660px;
    margin: 22px 0 0;
    color: var(--cc-muted);
    font-size: 1.08rem;
}

.cc-service-motion-panel {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border: 1px solid rgba(255, 217, 120, 0.22);
    border-radius: var(--cc-radius);
    background:
        radial-gradient(circle at 72% 20%, rgba(255, 217, 120, 0.22), transparent 8rem),
        linear-gradient(145deg, rgba(255, 248, 231, 0.08), rgba(255, 248, 231, 0.02));
    box-shadow: var(--cc-shadow);
    animation: cc-dashboard-float 6.5s ease-in-out infinite;
}

.cc-service-motion-panel span {
    position: absolute;
    display: block;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cc-gold-light), var(--cc-gold-deep));
    box-shadow: 0 0 42px rgba(255, 217, 120, 0.24);
}

.cc-service-motion-panel span:nth-child(1) {
    width: 44%;
    height: 18px;
    left: 12%;
    top: 22%;
    animation: cc-service-line 4.8s ease-in-out infinite;
}

.cc-service-motion-panel span:nth-child(2) {
    width: 68%;
    height: 18px;
    left: 18%;
    top: 42%;
    animation: cc-service-line 5.6s ease-in-out infinite 180ms;
}

.cc-service-motion-panel span:nth-child(3) {
    width: 52%;
    height: 18px;
    right: 12%;
    top: 62%;
    animation: cc-service-line 5.1s ease-in-out infinite 360ms;
}

.cc-service-motion-panel span:nth-child(4) {
    width: 92px;
    height: 92px;
    right: 14%;
    bottom: 14%;
    border-radius: 50%;
    animation: cc-marker-pulse 3.6s ease-in-out infinite;
}

.cc-service-motion-panel strong {
    position: absolute;
    left: 26px;
    bottom: 24px;
    max-width: 220px;
    color: var(--cc-cream);
    font-size: 1.25rem;
}

.cc-service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.cc-service-detail-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 26px;
    border: 1px solid var(--cc-line);
    border-radius: var(--cc-radius);
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.06), rgba(255, 248, 231, 0.025));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    transition: transform var(--cc-ease), border-color var(--cc-ease), box-shadow var(--cc-ease);
}

.cc-service-detail-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    opacity: 0;
    background: linear-gradient(90deg, transparent, var(--cc-gold-light), transparent);
    transition: opacity var(--cc-ease);
}

.cc-service-detail-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 217, 120, 0.42);
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.34);
}

.cc-service-detail-card:hover::before {
    opacity: 1;
}

.cc-service-detail-card > span {
    color: var(--cc-gold-light);
    font-size: 0.85rem;
    font-weight: 900;
}

.cc-service-detail-card h3 {
    margin: 16px 0 10px;
    color: var(--cc-cream);
    font-size: 1.18rem;
}

.cc-service-detail-card p {
    margin: 0;
    color: var(--cc-muted);
}

.cc-service-page-media img,
.cc-service-detail-visual img,
.cc-about-media img,
.cc-contact-map iframe {
    transition: filter 260ms ease;
}

.cc-service-page-card:hover .cc-service-page-media img,
.cc-service-detail-visual:hover img,
.cc-about-media:hover img {
    transform: none;
    filter: saturate(1.08) contrast(1.04);
}

.cc-service-page-card:hover .cc-service-page-media img,
.cc-seoz-service-card:hover .cc-seoz-service-icon,
.cc-seoz-service-card:hover .cc-seoz-service-icon img,
.cc-blog-card:hover .cc-blog-card-media img,
.cc-blog-card:hover .cc-blog-card-media span {
    animation: none;
}

.footer-socials a,
.footer-contact-list a,
.nav-menu a {
    position: relative;
    overflow: hidden;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.footer-socials a:hover,
.footer-contact-list a:hover,
.nav-menu .sub-menu a:hover {
    transform: translateY(-2px);
}

.cc-contact-form input,
.cc-contact-form select,
.cc-contact-form textarea {
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cc-contact-form input:focus,
.cc-contact-form select:focus,
.cc-contact-form textarea:focus {
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }

    .cc-cursor-glow,
    .cc-site-aurora {
        display: none !important;
    }
}

@keyframes cc-service-line {
    0%, 100% { transform: translateX(0); opacity: 0.74; }
    50% { transform: translateX(18px); opacity: 1; }
}

.cc-benefits-section {
    background: linear-gradient(180deg, rgba(23, 17, 31, 0.98), rgba(9, 7, 12, 0.98));
}

.cc-benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cc-benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 78px;
    padding: 18px;
    border: 1px solid var(--cc-line);
    border-radius: var(--cc-radius);
    background: rgba(255, 248, 231, 0.04);
    transition: transform var(--cc-ease), border-color var(--cc-ease), background var(--cc-ease);
}

.cc-benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 217, 120, 0.42);
    background: rgba(255, 217, 120, 0.07);
}

.cc-benefit-item span {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cc-gold-light), var(--cc-gold-deep));
    box-shadow: 0 0 22px rgba(255, 217, 120, 0.28);
}

.cc-benefit-item p {
    margin: 0;
    color: var(--cc-cream);
    font-weight: 760;
}

.cc-services-cta {
    padding: 74px 0;
    background:
        linear-gradient(90deg, rgba(217, 170, 66, 0.18), rgba(102, 53, 165, 0.12), rgba(217, 170, 66, 0.12)),
        var(--cc-ink);
    background-size: 180% 180%;
    animation: cc-gradient-shift 10s ease-in-out infinite;
}

.services-page .cc-service-page-card,
.services-page .cc-benefit-item,
.services-page .cc-overview-panel {
    animation: cc-soft-rise 700ms ease both;
}

@media (max-width: 1060px) {
    .cc-service-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-services-overview-grid,
    .cc-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .services-page .container {
        width: min(100% - 28px, 1120px);
    }

    .cc-services-hero {
        padding: 70px 0 58px;
    }

    .cc-service-page-grid,
    .cc-benefit-list {
        grid-template-columns: 1fr;
    }

    .cc-services-hero .cc-actions,
    .cc-services-hero .cc-actions .btn {
        width: 100%;
    }
}

.cc-industries-loop {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.cc-industries-track {
    display: flex;
    width: max-content;
    gap: 14px;
    animation: cc-industries-marquee 28s linear infinite;
}

.cc-industries-loop:hover .cc-industries-track {
    animation-play-state: paused;
}

.cc-industries-track .cc-industry-pill {
    flex: 0 0 210px;
}

@keyframes cc-industries-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 7px));
    }
}

.reveal {
    transform: translateY(30px);
}

.reveal.is-visible,
.cc-motion-ready .cc-service-card.is-visible,
.cc-motion-ready .cc-feature-item.is-visible,
.cc-motion-ready .cc-industry-pill.is-visible,
.cc-motion-ready .cc-process-step.is-visible,
.cc-motion-ready .cc-testimonial-slider.is-visible,
.cc-motion-ready .cc-final-cta-inner.is-visible,
.cc-motion-ready .cc-service-page-card.is-visible,
.cc-motion-ready .cc-service-detail-card.is-visible,
.cc-motion-ready .cc-services-process-step.is-visible,
.cc-motion-ready .cc-services-radar.is-visible,
.cc-motion-ready .cc-seoz-service-card.is-visible,
.cc-motion-ready .cc-seoz-process-card.is-visible,
.cc-motion-ready .cc-seoz-feature.is-visible,
.cc-motion-ready .cc-seoz-detail-card.is-visible,
.cc-motion-ready .cc-seoz-detail-outcome.is-visible,
.cc-motion-ready .cc-blog-card.is-visible,
.cc-motion-ready .cc-case-card.is-visible,
.cc-motion-ready .cc-case-metric.is-visible,
.cc-motion-ready .cc-case-story-grid section.is-visible,
.cc-motion-ready .cc-sidebar-box.is-visible,
.cc-motion-ready .cc-benefit-item.is-visible,
.cc-motion-ready .cc-overview-panel.is-visible,
.cc-motion-ready .cc-about-value.is-visible,
.cc-motion-ready .cc-contact-card.is-visible,
.cc-motion-ready .cc-contact-form-wrap.is-visible,
.cc-motion-ready .site-footer.is-visible {
    transform: translateY(0);
}

.cc-motion-ready .cc-service-card,
.cc-motion-ready .cc-feature-item,
.cc-motion-ready .cc-industry-pill,
.cc-motion-ready .cc-process-step,
.cc-motion-ready .cc-testimonial-slider,
.cc-motion-ready .cc-final-cta-inner,
.cc-motion-ready .cc-service-page-card,
.cc-motion-ready .cc-service-detail-card,
.cc-motion-ready .cc-services-process-step,
.cc-motion-ready .cc-services-radar,
.cc-motion-ready .cc-seoz-service-card,
.cc-motion-ready .cc-seoz-process-card,
.cc-motion-ready .cc-seoz-feature,
.cc-motion-ready .cc-seoz-detail-card,
.cc-motion-ready .cc-seoz-detail-outcome,
.cc-motion-ready .cc-blog-card,
.cc-motion-ready .cc-case-card,
.cc-motion-ready .cc-case-metric,
.cc-motion-ready .cc-case-story-grid section,
.cc-motion-ready .cc-sidebar-box,
.cc-motion-ready .cc-benefit-item,
.cc-motion-ready .cc-overview-panel,
.cc-motion-ready .cc-about-value,
.cc-motion-ready .cc-contact-card,
.cc-motion-ready .cc-contact-form-wrap,
.cc-motion-ready .site-footer {
    transform: translateY(30px);
}

.cc-hero-visual.reveal {
    transform: translateX(24px);
}

.cc-hero-copy.reveal.is-visible,
.cc-hero-visual.reveal.is-visible {
    transform: translateX(0);
}

.cc-service-card:hover,
.cc-process-card:hover,
.cc-testimonial-card:hover,
.cc-service-page-card:hover,
.cc-service-detail-card:hover,
.cc-services-process-step:hover,
.cc-seoz-service-card:hover,
.cc-seoz-process-card:hover,
.cc-seoz-feature:hover,
.cc-seoz-detail-card:hover,
.cc-seoz-detail-outcome:hover,
.cc-blog-card:hover,
.cc-case-card:hover,
.cc-case-metric:hover,
.cc-case-story-grid section:hover,
.cc-sidebar-box:hover,
.cc-benefit-item:hover,
.cc-about-value:hover,
.cc-contact-card:hover,
.cc-contact-form-card:hover,
.cc-contact-info-card:hover,
.cc-contact-form-wrap:hover,
.cc-contact-info-item:hover,
.cc-overview-panel:hover,
.cc-final-cta-inner:hover,
.cc-feature-panel:hover,
.cc-feature-item:hover,
.cc-industry-pill:hover,
.cc-process-content:hover,
.cc-metric-card:hover,
.site-main :where([class*="card"], [class*="panel"], [class*="box"], [class*="wrap"]):hover {
    animation: none !important;
    transform: translateY(-6px) !important;
    border-color: rgba(255, 217, 120, 0.38);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
    transition:
        transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1),
        border-color 220ms ease,
        background 220ms ease,
        box-shadow 220ms ease !important;
    will-change: transform;
}

.cc-service-page-card:hover .cc-service-page-media img,
.cc-service-page-card:hover img,
.cc-service-detail-visual:hover img,
.cc-about-media:hover img,
.cc-seoz-service-card:hover .cc-seoz-service-icon,
.cc-seoz-service-card:hover .cc-seoz-service-icon img,
.cc-seoz-detail-image-panel:hover img,
.cc-blog-card:hover .cc-blog-card-media img,
.cc-blog-card:hover .cc-blog-card-media span {
    animation: none !important;
    transform: none !important;
    transition: filter 220ms ease !important;
    filter: saturate(1.04) contrast(1.02);
}

.cc-industries-track .cc-industry-pill:hover {
    transform: none !important;
    box-shadow: none;
}

@media (max-width: 820px) {
    .cc-industries-track .cc-industry-pill {
        flex-basis: 180px;
    }
}

.cc-hero h1,
body.home-template .cc-hero h1,
.cc-about-hero h1,
.cc-contact-hero h1,
.cc-thank-you-inner h1,
.cc-services-hero h1,
.cc-seoz-hero-copy h1,
.cc-seoz-detail-copy h1,
.cc-blog-hero h1,
.cc-single-hero h1,
.cc-services-lab-copy h1,
.cc-service-detail-copy h1,
.cc-service-detail-hero h1 {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: var(--cc-cream) !important;
    color: var(--cc-cream) !important;
    font-size: clamp(2.2rem, 4.25vw, 3.75rem) !important;
    line-height: 1.02 !important;
    max-width: 760px;
    opacity: 1 !important;
    filter: none !important;
    animation: none !important;
}

.cc-split-word {
    color: inherit !important;
    -webkit-text-fill-color: inherit !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
}

.cc-hero-visual::before,
.cc-hero-visual::after {
    content: none !important;
    display: none !important;
}

@media (max-width: 820px) {
    .cc-hero h1,
    body.home-template .cc-hero h1,
    .cc-about-hero h1,
    .cc-contact-hero h1,
    .cc-thank-you-inner h1,
    .cc-services-hero h1,
    .cc-seoz-hero-copy h1,
    .cc-seoz-detail-copy h1,
    .cc-blog-hero h1,
    .cc-single-hero h1,
    .cc-case-hero-copy h1,
    .cc-services-lab-copy h1,
    .cc-service-detail-copy h1,
    .cc-service-detail-hero h1 {
        font-size: clamp(2rem, 9vw, 2.7rem) !important;
        line-height: 1.06 !important;
    }
}

/* Responsive hardening layer */
body,
#page,
.site,
.site-content,
.site-main {
    max-width: 100%;
}

.site-main {
    overflow-x: clip;
}

h1,
h2,
h3,
p,
a,
span,
strong,
li {
    overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
    .container,
    .header-container,
    .cc-seoz-detail .container,
    .services-page .container {
        width: min(100% - 36px, 1120px) !important;
    }

    .header-inner {
        gap: 18px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    .header-cta .btn {
        padding-inline: 16px;
    }

    .cc-hero-grid,
    body.home-template .cc-hero-grid,
    .cc-seoz-hero-grid,
    .cc-seoz-detail-hero-grid,
    .cc-service-detail-hero-grid {
        gap: 34px;
    }

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

@media (max-width: 980px) {
    .cc-hero-grid,
    body.home-template .cc-hero-grid,
    .cc-split,
    .cc-testimonial-layout,
    .cc-about-grid,
    .cc-about-why-grid,
    .cc-contact-grid,
    .cc-seoz-hero-grid,
    .cc-seoz-why-grid,
    .cc-seoz-detail-hero-grid,
    .cc-seoz-detail-overview-grid,
    .cc-seoz-detail-outcomes-grid,
    .cc-service-detail-hero-grid,
    .cc-services-lab-hero-grid,
    .cc-services-lab-overview,
    .cc-services-lab-stack-grid,
    .cc-blog-layout,
    .cc-single-layout {
        grid-template-columns: 1fr !important;
    }

    .cc-hero-copy,
    .cc-hero-visual,
    .cc-seoz-hero-copy,
    .cc-seoz-detail-copy,
    .cc-section-head,
    .cc-left-head,
    .cc-about-hero-inner,
    .cc-contact-hero-inner,
    .cc-blog-hero-inner {
        max-width: 760px;
    }

    .cc-hero-visual,
    body.home-template .cc-hero-visual,
    .cc-seoz-hero-card,
    .cc-seoz-detail-panel,
    .cc-seoz-detail-image-panel,
    .cc-service-motion-panel {
        width: 100%;
        max-width: 720px;
        margin-inline: auto;
    }

    .cc-services-grid,
    .cc-service-page-grid,
    .cc-seoz-service-grid,
    .cc-seoz-process-grid,
    .cc-blog-grid,
    .cc-service-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .cc-process-grid,
    .cc-process-flow,
    body.home-template .cc-process-flow,
    .cc-industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .footer-main,
    .footer-links-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-links-grid {
        gap: 24px;
    }
}

@media (max-width: 820px) {
    .container,
    .header-container,
    .cc-seoz-detail .container,
    .services-page .container {
        width: min(100% - 28px, 1120px) !important;
    }

    .site-header {
        position: sticky;
    }

    .header-inner {
        min-height: 82px;
        gap: 12px;
    }

    .custom-logo-link img {
        max-height: 76px;
    }

    .site-logo {
        font-size: 1.1rem;
    }

    .header-cta {
        display: none;
    }

    .main-navigation {
        flex: 0 0 auto;
        justify-content: flex-end;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: fixed;
        top: 82px;
        left: 14px;
        right: 14px;
        z-index: 80;
        display: grid;
        gap: 0;
        max-height: calc(100vh - 104px);
        padding: 12px;
        overflow: auto;
        border: 1px solid rgba(255, 217, 120, 0.2);
        border-radius: 10px;
        background: rgba(7, 6, 9, 0.98);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-menu li,
    .nav-menu a {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 13px 12px;
        border-radius: 8px;
        font-size: 0.98rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu .sub-menu {
        position: static;
        min-width: 0;
        margin: 4px 0 6px;
        padding: 6px;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 248, 231, 0.04);
        box-shadow: none;
    }

    .cc-hero,
    body.home-template .cc-hero,
    .cc-about-hero,
    .cc-contact-hero,
    .cc-seoz-hero,
    .cc-seoz-detail-hero,
    .cc-service-detail-hero,
    .cc-blog-hero,
    .cc-single-hero {
        padding-block: 58px !important;
    }

    .cc-section {
        padding-block: 64px;
    }

    .cc-actions,
    body.home-template .cc-actions {
        width: 100%;
    }

    .cc-actions .btn,
    .cc-contact-form .btn,
    .cc-final-cta .btn {
        width: 100%;
        white-space: normal;
    }

    .cc-hero-proof,
    body.home-template .cc-hero-proof,
    .cc-about-stats,
    .cc-services-metrics,
    .cc-benefit-list,
    .cc-contact-form .cc-form-row,
    .cc-seoz-feature-list,
    .cc-seoz-detail-card-grid,
    .cc-seoz-detail-outcome-list {
        grid-template-columns: 1fr !important;
    }

    .cc-hero-image-frame,
    .cc-dashboard-visual,
    body.home-template .cc-dashboard-visual,
    body.home-template .cc-hero-image-frame,
    .cc-seoz-detail-image-panel,
    .cc-seoz-detail-image-panel img,
    .cc-service-motion-panel {
        min-height: 360px !important;
    }

    .cc-final-cta-inner {
        display: grid;
        gap: 24px;
        padding: 24px;
    }

    .footer-main {
        padding-block: 46px 34px;
    }

    .footer-bottom-inner {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container,
    .header-container,
    .cc-seoz-detail .container,
    .services-page .container {
        width: min(100% - 24px, 1120px) !important;
    }

    .cc-services-grid,
    .cc-service-page-grid,
    .cc-seoz-service-grid,
    .cc-seoz-process-grid,
    .cc-blog-grid,
    .cc-service-detail-grid,
    .cc-process-grid,
    .cc-process-flow,
    body.home-template .cc-process-flow,
    .cc-about-compass,
    .cc-feature-panel {
        grid-template-columns: 1fr !important;
    }

    .cc-hero,
    body.home-template .cc-hero,
    .cc-about-hero,
    .cc-contact-hero,
    .cc-seoz-hero,
    .cc-seoz-detail-hero,
    .cc-service-detail-hero,
    .cc-blog-hero,
    .cc-single-hero {
        padding-block: 44px !important;
    }

    .cc-section {
        padding-block: 52px;
    }

    .cc-hero-text,
    .cc-section-head p:not(.cc-eyebrow),
    .cc-final-cta p:not(.cc-eyebrow),
    .cc-about-hero p:not(.cc-eyebrow),
    .cc-contact-hero p:not(.cc-eyebrow),
    .cc-seoz-hero-copy p:not(.cc-eyebrow),
    .cc-seoz-detail-copy p:not(.cc-eyebrow) {
        font-size: 0.98rem;
    }

    .cc-service-card,
    .cc-process-card,
    .cc-testimonial-card,
    .cc-service-page-card a,
    .cc-seoz-service-card a,
    .cc-seoz-process-card,
    .cc-seoz-detail-card,
    .cc-contact-form-card,
    .cc-contact-info-card,
    .cc-about-panel,
    .cc-about-value,
    .cc-final-cta-inner {
        padding: 22px !important;
    }

    .cc-hero-image-frame,
    .cc-dashboard-visual,
    body.home-template .cc-dashboard-visual,
    body.home-template .cc-hero-image-frame,
    .cc-seoz-detail-image-panel,
    .cc-seoz-detail-image-panel img,
    .cc-service-motion-panel {
        min-height: 300px !important;
    }

    .cc-chart {
        left: 20px;
        right: 20px;
        bottom: 28px;
        gap: 10px;
        height: 150px;
    }

    .cc-metric-card {
        top: 58px;
        left: 20px;
        width: min(190px, calc(100% - 40px));
        padding: 16px;
    }

    .cc-metric-card strong {
        font-size: 2.4rem;
    }

    .cc-orbit-badge {
        top: 50px;
        right: 20px;
        width: 72px;
    }

    .cc-contact-info-item,
    .footer-contact-list a,
    .footer-contact-list > span {
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .footer-socials a {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 420px) {
    .container,
    .header-container,
    .cc-seoz-detail .container,
    .services-page .container {
        width: min(100% - 20px, 1120px) !important;
    }

    .header-inner {
        min-height: 72px;
    }

    .custom-logo-link img {
        max-height: 64px;
    }

    .nav-menu {
        top: 72px;
        left: 10px;
        right: 10px;
    }

    .cc-hero h1,
    body.home-template .cc-hero h1,
    .cc-about-hero h1,
    .cc-contact-hero h1,
    .cc-thank-you-inner h1,
    .cc-services-hero h1,
    .cc-seoz-hero-copy h1,
    .cc-seoz-detail-copy h1,
    .cc-blog-hero h1,
    .cc-single-hero h1,
    .cc-services-lab-copy h1,
    .cc-service-detail-copy h1,
    .cc-service-detail-hero h1 {
        font-size: clamp(1.82rem, 10vw, 2.35rem) !important;
    }

    .cc-hero-proof div,
    .cc-service-card,
    .cc-process-card,
    .cc-testimonial-card,
    .cc-service-page-card a,
    .cc-seoz-service-card a,
    .cc-seoz-process-card,
    .cc-seoz-detail-card,
    .cc-contact-form-card,
    .cc-contact-info-card,
    .cc-about-panel,
    .cc-about-value,
    .cc-final-cta-inner {
        padding: 18px !important;
    }
}

/* Keep the homepage industries as a horizontal marquee on every breakpoint. */
body.home-template .cc-industries-loop {
    display: block !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

body.home-template .cc-industries-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    gap: 14px;
    width: max-content !important;
    min-width: max-content !important;
    animation: cc-industries-marquee 28s linear infinite !important;
    will-change: transform;
}

body.home-template .cc-industries-track .cc-industry-pill {
    flex: 0 0 clamp(160px, 18vw, 230px) !important;
    width: clamp(160px, 18vw, 230px) !important;
    min-width: clamp(160px, 18vw, 230px) !important;
    max-width: none !important;
    display: grid !important;
    place-items: center;
    white-space: nowrap;
}

@media (max-width: 640px) {
    body.home-template .cc-industries-track {
        gap: 10px;
        animation-duration: 22s !important;
    }

    body.home-template .cc-industries-track .cc-industry-pill {
        flex-basis: 150px !important;
        width: 150px !important;
        min-width: 150px !important;
        min-height: 66px;
        padding: 16px 18px !important;
        font-size: 0.92rem;
    }
}

/* Safe gold heading treatment: keeps text visible even if gradient clipping fails. */
.cc-hero h1,
body.home-template .cc-hero h1,
.cc-about-hero h1,
.cc-contact-hero h1,
.cc-thank-you-inner h1,
.cc-services-hero h1,
.cc-seoz-hero-copy h1,
.cc-seoz-detail-copy h1,
.cc-blog-hero h1,
.cc-single-hero h1,
.cc-case-hero-copy h1,
.cc-services-lab-copy h1,
.cc-service-detail-copy h1,
.cc-service-detail-hero h1 {
    color: var(--cc-cream) !important;
    -webkit-text-fill-color: var(--cc-cream) !important;
    text-shadow: 0 10px 36px rgba(255, 217, 120, 0.12);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .cc-hero h1,
    body.home-template .cc-hero h1,
    .cc-about-hero h1,
    .cc-contact-hero h1,
    .cc-thank-you-inner h1,
    .cc-services-hero h1,
    .cc-seoz-hero-copy h1,
    .cc-seoz-detail-copy h1,
    .cc-blog-hero h1,
    .cc-single-hero h1,
    .cc-case-hero-copy h1,
    .cc-services-lab-copy h1,
    .cc-service-detail-copy h1,
    .cc-service-detail-hero h1 {
        background:
            linear-gradient(105deg, #fff8e7 0%, #ffe28a 22%, #c9962e 38%, #fff6c7 46%, #f0bd4f 54%, #fff8e7 72%, #ffe28a 100%) !important;
        background-size: 320% 100% !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        color: var(--cc-cream) !important;
        -webkit-text-fill-color: transparent !important;
        animation: cc-heading-gold-sheen 4.8s ease-in-out infinite !important;
    }

    .cc-hero h1 .cc-split-word,
    body.home-template .cc-hero h1 .cc-split-word,
    .cc-about-hero h1 .cc-split-word,
    .cc-contact-hero h1 .cc-split-word,
    .cc-thank-you-inner h1 .cc-split-word,
    .cc-services-hero h1 .cc-split-word,
    .cc-seoz-hero-copy h1 .cc-split-word,
    .cc-seoz-detail-copy h1 .cc-split-word,
    .cc-blog-hero h1 .cc-split-word,
    .cc-single-hero h1 .cc-split-word,
    .cc-case-hero-copy h1 .cc-split-word,
    .cc-services-lab-copy h1 .cc-split-word,
    .cc-service-detail-copy h1 .cc-split-word,
    .cc-service-detail-hero h1 .cc-split-word {
        background: inherit !important;
        background-size: inherit !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        color: var(--cc-cream) !important;
        -webkit-text-fill-color: transparent !important;
    }
}

@keyframes cc-heading-gold-sheen {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cc-case-page {
    background:
        radial-gradient(circle at 16% 12%, rgba(217, 170, 66, 0.14), transparent 34%),
        linear-gradient(180deg, var(--cc-black), var(--cc-ink) 52%, var(--cc-black));
}

.cc-case-hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0 56px;
}

.cc-case-page .reveal,
.cc-case-page .cc-sidebar-box,
.cc-case-page .cc-case-card,
.cc-case-page .cc-case-metric,
.cc-case-page .cc-case-story-grid section {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

.cc-error-page {
    background:
        radial-gradient(circle at 12% 14%, rgba(217, 170, 66, 0.16), transparent 34%),
        linear-gradient(180deg, var(--cc-black), var(--cc-ink) 54%, var(--cc-black));
}

.cc-error-hero {
    position: relative;
    overflow: hidden;
    padding: 94px 0 72px;
}

.cc-error-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 6, 9, 0.94), rgba(7, 6, 9, 0.72)),
        repeating-linear-gradient(135deg, rgba(255, 217, 120, 0.08) 0 1px, transparent 1px 18px);
    pointer-events: none;
}

.cc-error-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
    gap: 38px;
    align-items: center;
}

.cc-error-copy h1 {
    max-width: 760px;
    margin: 0 0 22px;
    color: var(--cc-cream);
    font-size: clamp(2.2rem, 4.6vw, 4.6rem);
    line-height: 1.02;
}

.cc-error-copy p:not(.cc-eyebrow) {
    max-width: 650px;
    color: var(--cc-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.cc-error-copy .cc-actions {
    margin-top: 30px;
}

.cc-error-panel,
.cc-error-search,
.cc-error-link-card {
    border: 1px solid var(--cc-line);
    border-radius: var(--cc-radius);
    background: linear-gradient(145deg, rgba(32, 23, 43, 0.96), rgba(10, 8, 14, 0.94));
    box-shadow: var(--cc-shadow);
}

.cc-error-panel {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    padding: 30px;
}

.cc-error-panel > span {
    display: block;
    color: var(--cc-gold-light);
    font-size: clamp(4rem, 11vw, 7.5rem);
    font-weight: 950;
    line-height: 0.9;
}

.cc-error-panel > strong {
    display: block;
    margin-top: 12px;
    color: var(--cc-cream);
    font-size: 1.35rem;
}

.cc-error-map {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    display: grid;
    gap: 12px;
}

.cc-error-map i {
    display: block;
    height: 11px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 217, 120, 0.86), rgba(255, 217, 120, 0.08));
}

.cc-error-map i:nth-child(2) {
    width: 76%;
}

.cc-error-map i:nth-child(3) {
    width: 58%;
}

.cc-error-map i:nth-child(4) {
    width: 88%;
}

.cc-error-recovery {
    background: rgba(7, 6, 9, 0.72);
}

.cc-error-search {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(280px, 1fr);
    gap: 24px;
    align-items: center;
    padding: 28px;
}

.cc-error-search h2 {
    margin: 0;
    color: var(--cc-cream);
    font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.cc-error-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.cc-error-search-form input {
    min-height: 50px;
    width: 100%;
    border: 1px solid rgba(255, 217, 120, 0.2);
    border-radius: var(--cc-radius);
    padding: 0 16px;
    color: var(--cc-cream);
    background: rgba(255, 248, 231, 0.05);
    font: inherit;
    outline: none;
}

.cc-error-search-form input:focus {
    border-color: rgba(255, 217, 120, 0.58);
    box-shadow: 0 0 0 3px rgba(255, 217, 120, 0.1);
}

.cc-error-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.cc-error-link-card {
    overflow: hidden;
    transition: transform var(--cc-ease), border-color var(--cc-ease), box-shadow var(--cc-ease);
}

.cc-error-link-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 217, 120, 0.42);
}

.cc-error-link-card a {
    display: grid;
    min-height: 100%;
    gap: 12px;
    padding: 22px;
    color: inherit;
    text-decoration: none;
}

.cc-error-link-card span {
    color: var(--cc-gold-light);
    font-weight: 900;
}

.cc-error-link-card p {
    margin: 0;
    color: var(--cc-muted);
}

.cc-case-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 6, 9, 0.94), rgba(7, 6, 9, 0.72)),
        repeating-linear-gradient(135deg, rgba(255, 217, 120, 0.08) 0 1px, transparent 1px 18px);
    pointer-events: none;
}

.cc-case-hero-grid,
.cc-case-single-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    gap: 42px;
    align-items: center;
}

.cc-case-single-hero {
    min-height: auto;
}

.cc-case-hero-copy h1 {
    max-width: 740px;
    margin: 0 0 22px;
    font-size: clamp(2.1rem, 4.2vw, 4rem) !important;
    line-height: 1.04;
    color: var(--cc-cream);
}

.cc-case-single .cc-case-hero-copy h1 {
    max-width: 700px;
    font-size: clamp(2rem, 3.7vw, 3.55rem) !important;
}

.cc-case-hero-copy p:not(.cc-eyebrow) {
    max-width: 640px;
    color: var(--cc-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.cc-case-hero-copy .cc-actions {
    margin-top: 30px;
}

.cc-case-hero-panel,
.cc-case-single-visual,
.cc-case-facts,
.cc-case-metric,
.cc-case-card,
.cc-case-story-grid section {
    border: 1px solid var(--cc-line);
    border-radius: var(--cc-radius);
    background: linear-gradient(145deg, rgba(32, 23, 43, 0.96), rgba(10, 8, 14, 0.94));
    box-shadow: var(--cc-shadow);
}

.cc-case-hero-panel {
    padding: 30px;
}

.cc-case-hero-panel > span {
    display: block;
    margin-bottom: 18px;
    color: var(--cc-gold-light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cc-case-hero-panel > strong {
    display: block;
    color: var(--cc-cream);
    font-size: clamp(1.45rem, 3vw, 2.25rem);
    line-height: 1.08;
}

.cc-case-hero-stats,
.cc-case-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.cc-case-hero-stats div,
.cc-case-metric {
    padding: 18px;
}

.cc-case-hero-stats b,
.cc-case-metric strong,
.cc-case-card-result strong {
    display: block;
    color: var(--cc-gold-light);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1;
}

.cc-case-hero-stats small,
.cc-case-metric span,
.cc-case-card-result small {
    display: block;
    margin-top: 8px;
    color: var(--cc-muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

.cc-case-archive {
    background: rgba(7, 6, 9, 0.72);
}

.cc-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.cc-case-card {
    position: relative;
    overflow: hidden;
    transition: transform var(--cc-ease), border-color var(--cc-ease), box-shadow var(--cc-ease);
}

.cc-case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 217, 120, 0.44);
}

.cc-case-card a {
    display: grid;
    min-height: 100%;
    color: inherit;
    text-decoration: none;
}

.cc-case-card-media,
.cc-case-visual-media {
    position: relative;
    display: grid;
    min-height: 230px;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(217, 170, 66, 0.28), rgba(32, 23, 43, 0.92)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 22px);
}

.cc-case-card-placeholder,
.cc-case-visual-placeholder {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(82%, 340px);
    gap: 14px;
    border: 1px solid rgba(255, 217, 120, 0.24);
    border-radius: var(--cc-radius);
    padding: 24px;
    background:
        linear-gradient(145deg, rgba(7, 6, 9, 0.78), rgba(32, 23, 43, 0.86)),
        linear-gradient(90deg, rgba(255, 217, 120, 0.08), transparent);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.cc-case-card-media img,
.cc-case-visual-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 480ms ease;
}

.cc-case-card:hover .cc-case-card-media img {
    transform: scale(1.06);
}

.cc-case-card-media span,
.cc-case-visual-media span {
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    border: 1px solid rgba(255, 217, 120, 0.34);
    border-radius: 50%;
    color: var(--cc-gold-light);
    font-size: 2.2rem;
    font-weight: 900;
}

.cc-case-card-placeholder strong {
    color: var(--cc-cream);
    font-size: 2.1rem;
    line-height: 1;
}

.cc-case-card-placeholder small,
.cc-case-visual-placeholder small {
    color: var(--cc-muted);
    font-weight: 800;
}

.cc-case-card-body {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.cc-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cc-case-tags span {
    border: 1px solid rgba(255, 217, 120, 0.2);
    border-radius: 999px;
    padding: 7px 11px;
    color: var(--cc-gold-light);
    background: rgba(255, 217, 120, 0.07);
    font-size: 0.76rem;
    font-weight: 800;
}

.cc-case-card h3 {
    margin: 0;
    color: var(--cc-cream);
    font-size: 1.32rem;
    line-height: 1.22;
}

.cc-case-card p {
    margin: 0;
    color: var(--cc-muted);
}

.cc-case-card-result {
    border-top: 1px solid var(--cc-line);
    padding-top: 16px;
}

.cc-case-card b {
    color: var(--cc-gold-light);
}

.cc-case-single-visual {
    position: relative;
    overflow: hidden;
}

.cc-case-visual-media {
    min-height: 350px;
}

.cc-case-visual-placeholder {
    width: min(88%, 420px);
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    padding: 28px;
}

.cc-case-visual-placeholder strong {
    display: block;
    margin-top: 7px;
    color: var(--cc-cream);
    font-size: 1.28rem;
    line-height: 1.2;
}

.cc-case-visual-placeholder ul {
    grid-column: 1 / -1;
    display: grid;
    gap: 10px;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.cc-case-visual-placeholder li {
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 217, 120, 0.86), rgba(255, 217, 120, 0.08));
}

.cc-case-visual-placeholder li:nth-child(2) {
    width: 78%;
}

.cc-case-visual-placeholder li:nth-child(3) {
    width: 56%;
}

.cc-case-visual-result {
    position: absolute;
    right: 22px;
    bottom: 22px;
    min-width: 160px;
    border: 1px solid rgba(255, 217, 120, 0.28);
    border-radius: var(--cc-radius);
    padding: 18px;
    background: rgba(7, 6, 9, 0.86);
    backdrop-filter: blur(12px);
}

.cc-case-visual-result small {
    display: block;
    color: var(--cc-muted);
    font-weight: 700;
}

.cc-case-visual-result strong {
    display: block;
    margin-top: 8px;
    color: var(--cc-gold-light);
    font-size: 2.6rem;
    line-height: 1;
}

.cc-case-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
}

.cc-case-facts div {
    padding: 22px;
    border-right: 1px solid var(--cc-line);
}

.cc-case-facts div:last-child {
    border-right: 0;
}

.cc-case-facts span,
.cc-case-sidebar-list span {
    display: block;
    margin-bottom: 7px;
    color: var(--cc-muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cc-case-facts strong,
.cc-case-sidebar-list strong {
    color: var(--cc-cream);
}

.cc-case-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
}

.cc-case-story-grid {
    display: grid;
    gap: 18px;
    margin-bottom: 30px;
}

.cc-case-story-grid section {
    padding: 26px;
}

.cc-case-story-grid span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--cc-gold-light);
    font-weight: 900;
}

.cc-case-story-grid h2 {
    margin: 0 0 12px;
    color: var(--cc-cream);
}

.cc-case-story-grid p,
.cc-case-sidebar-list p {
    margin: 0;
    color: var(--cc-muted);
}

.cc-case-editor-content {
    margin-top: 0;
}

.cc-case-sidebar-list {
    display: grid;
    gap: 16px;
    margin: 18px 0 24px;
}

@media (max-width: 980px) {
    .cc-error-grid,
    .cc-error-search {
        grid-template-columns: 1fr;
    }

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

    .cc-case-hero-grid,
    .cc-case-single-hero-grid,
    .cc-case-story-layout {
        grid-template-columns: 1fr;
    }

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

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

    .cc-case-facts div:nth-child(2) {
        border-right: 0;
    }

    .cc-case-facts div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--cc-line);
    }
}

@media (max-width: 640px) {
    .cc-error-hero {
        padding: 72px 0 54px;
    }

    .cc-error-panel {
        min-height: 260px;
        padding: 22px;
    }

    .cc-error-search,
    .cc-error-link-card a {
        padding: 20px;
    }

    .cc-error-search-form,
    .cc-error-links {
        grid-template-columns: 1fr;
    }

    .cc-error-search-form .btn {
        width: 100%;
    }

    .cc-case-hero {
        padding: 76px 0 56px;
    }

    .cc-case-grid,
    .cc-case-hero-stats,
    .cc-case-metrics,
    .cc-case-facts {
        grid-template-columns: 1fr;
    }

    .cc-case-facts div,
    .cc-case-facts div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--cc-line);
    }

    .cc-case-facts div:last-child {
        border-bottom: 0;
    }

    .cc-case-card-body,
    .cc-case-hero-panel,
    .cc-case-story-grid section {
        padding: 20px;
    }

    .cc-case-visual-media {
        min-height: 300px;
    }

    .cc-case-visual-result {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }
}
