*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --black: #0d0d0d;
    --white: #ffffff;
    --off-white: #f5f2ee;
    --gray: #888;
    --gray2: #555;
    --border: #1f1f1f;
    --border2: #2a2a2a;
    --green: #b8f458;
    --font-display: 'Bebas Neue', sans-serif;
    --font-mono: 'DM Mono', monospace;
    --font-body: 'Inter', sans-serif;
    --panel: #1c1c1c;
}

html {
    scroll-behavior: smooth
}

body {
    background: #0d0d0d;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

img {
    display: block;
    max-width: 100%
}

/* ── NAV ── */
a.nav-logo img {
    width: 130px;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 4px
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: .3s
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg)
}

.nav-burger.open span:nth-child(2) {
    opacity: 0
}

.nav-burger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg)
}


.hero-work-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .06em;
    color: #fff;
    text-transform: uppercase;
    transition: gap .3s;
}

.hero-work-btn:hover,
.hero-work-btn:active,
.hero-work-btn:focus {
    gap: 20px;
    color: #fff;
    text-decoration: none;
    outline: none;
}

.hero-work-btn:hover .arrow-circle {
    border-color: rgba(255, 255, 255, .5)
}

.arrow-circle {
    width: 46px;
    height: 46px;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .25s, background .25s;
}

.arrow-circle svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5
}

.hero-scroll-hint {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #888;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(#888, transparent)
}

@keyframes fadeIn {
    to {
        opacity: 1
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ── SECTION COMMON ── */
.sec {
    padding: 100px 40px
}

.sec-border-top {
    border-top: 1px solid #1f1f1f
}

.sec-label {
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 20px;
}

.sec-title {
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 48px;
    font-family: 'Bebas Neue', sans-serif;
}

.sec-title span {
    opacity: 0.5;
}

/* ── EXPERTISE / WHO ── */

/* ── WORK SECTIONS ── */

a.mainbutton {
    display: inline-flex;
    color: #0a0a0a;
    gap: 10px;
    align-items: center;
    padding: 18px 30px;
    background: #c5c6cb;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 20px;
    text-decoration: none;
    border: none;
    outline: none;
    transition: all 0.3s;
}

a.mainbutton .button-iconwrapper {
    transition: all 0.3s;
}

a.mainbutton:hover .button-iconwrapper {
    transform: rotate(45deg);
}

section#testimonials a.mainbutton img {
    transition: all 0.3s;
}

section#testimonials a.mainbutton:hover img {
    transform: rotate(45deg);
}

section#services .services-accordion-item.open .accordion-body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.work-list {
    border-top: 1px solid #1f1f1f
}

.work-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #1f1f1f;
    cursor: none;
    transition: background .2s;
    position: relative;
    overflow: hidden;
}

.work-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .025);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.work-item:hover::before {
    transform: scaleX(1)
}

.work-item-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    min-width: 0;
}

.work-item-name {
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 300;
    letter-spacing: -.01em;
    color: #fff;
    transition: color .25s;
    white-space: nowrap;
}

.work-item:hover .work-item-name {
    color: rgba(255, 255, 255, .9)
}

.work-item-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.work-item-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.work-item-tag {
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
}

.work-item-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .25s, transform .25s, border-color .25s, background .25s;
}

.work-item:hover .work-item-arrow {
    opacity: 1;
    transform: translateX(0)
}

.work-item:hover .work-item-arrow {
    border-color: rgba(255, 255, 255, .3)
}

.work-item-arrow svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2
}

.work-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    margin-top: 32px;
    transition: gap .3s;
}

.work-view-all:hover {
    gap: 16px
}

.work-view-all svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5
}

/* client logos */
.client-logos {
    display: flex;
    align-items: center;
    gap: 56px;
    padding: 60px 40px;
    border-top: 1px solid #1f1f1f;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: space-around;
}

.client-logos::-webkit-scrollbar {
    display: none
}

.client-logos img {
    height: 22px;
    width: auto;
    opacity: .45;
    transition: opacity .25s;
    filter: brightness(0) invert(1);
}

.client-logos img:hover {
    opacity: .8
}

/* ── SERVICES ACCORDION ── */
.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #1f1f1f;
    gap: 8rem;
}

.services-left {
    border-right: 1px solid #1f1f1f
}

.services-accordion-item {
    border-bottom: 1px solid #1f1f1f;
}

.services-accordion-item:last-child {
    border-bottom: none
}

.accordion-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    cursor: none;
    transition: background .2s;
}

.accordion-head:hover {
    background: rgba(255, 255, 255, .025)
}

.accordion-num {
    font-size: 11px;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .3);
    margin-right: 20px;
    flex-shrink: 0;
}

.accordion-title {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 300;
    letter-spacing: -.01em;
    flex: 1;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.accordion-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.accordion-icons img {
    width: 22px;
    height: 22px
}

.accordion-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s, background .25s;
    margin-left: 16px;
}

.accordion-head:hover .accordion-arrow,
.services-accordion-item.open .accordion-arrow {
    background: rgba(255, 255, 255, .07)
}

.accordion-arrow svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    transition: transform .3s
}

.services-accordion-item.open .accordion-arrow svg {
    transform: rotate(180deg)
}

.accordion-body {
    display: none;
    padding: 0 32px 32px;
    flex-direction: column;
    gap: 0;
}

.services-accordion-item.open .accordion-body {
    display: flex
}

.accordion-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.75;
    margin-bottom: 24px;
    width: 50%;
    font-weight: 400;
}

.accordion-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #1f1f1f;
    width: 40%;
}

.accordion-links a {
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
    padding: 8px 0;
    border-bottom: 1px solid #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color .25s;
    text-decoration: none;
}

.accordion-links a:hover,
.accordion-links a:active,
.accordion-links a:focus {
    color: #fff;
    outline: none;
    text-decoration: none;
}

.accordion-links a::after {
    content: '→';
    font-size: 14px;
    opacity: .4
}

/* services right panel images */
.services-right {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.services-imgs {
    position: absolute;
    inset: 0
}

.services-imgs img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .5s;
    border-radius: 10px;
}

.services-imgs img.active {
    opacity: 1
}

/* ── STATS ── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #1f1f1f;
    border-left: 1px solid #1f1f1f;
}

.stat-cell {
    padding: 30px 20px;
    border-right: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-num {
    font-size: clamp(18px, 4vw, 40px);
    font-weight: 300;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .02em
}

/* ── TESTIMONIALS ── */
.testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
}

.testimonials-header .sec-title {
    margin-bottom: 0
}

.testimonials-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.our-work-btn {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    border: 1px solid #2a2a2a;
    padding: 10px 20px;
    transition: border-color .25s, color .25s;
    text-decoration: none;
}

.our-work-btn:hover,
.our-work-btn:active,
.our-work-btn:focus {
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
    text-decoration: none;
    outline: none;
}

.t-nav-btns {
    display: flex;
    gap: 8px
}

.t-nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #2a2a2a;
    background: none;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .25s, background .25s;
}

.t-nav-btn:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .05)
}

.t-nav-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5
}

.t-track-outer {
    overflow: hidden
}

.t-track {
    display: flex;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1)
}

.t-slide {
    min-width: 100%
}

.t-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

.t-avatar {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #111;
    position: relative;
}

.t-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.t-body {
    padding: 8px 0
}

.t-quote {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 36px;
    letter-spacing: -.01em;
}

.t-quote::before {
    content: '\201C';
    color: rgba(255, 255, 255, .25);
    font-size: 1.2em
}

.t-author-name {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px
}

.t-author-role {
    font-size: 13px;
    color: rgba(255, 255, 255, .4)
}

/* ── ABOUT CTA ── */
.about-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid #1f1f1f;
}

.about-cta-left {
    padding: 80px 60px 80px 40px;
    border-right: 1px solid #1f1f1f;
    position: relative;
    overflow: hidden;
}

.about-cta-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .10;
}

.about-cta-content {
    position: relative;
    z-index: 1
}

.about-cta-label {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #0a0a0a;
    margin-bottom: 20px
}

.about-cta-left .about-cta-label {
    color: #fff;
}

.about-cta-title {
    font-size: clamp(34px, 3.5vw, 58px);
    font-weight: 300;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: 40px;
    font-family: 'Bebas Neue', sans-serif;
}

.about-cta-content p {
    font-size: 18px;
    width: 80%;
    margin-bottom: 40px;
}

.about-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.cta-outline-btn {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    padding: 11px 22px;
    transition: border-color .25s, background .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-outline-btn:hover,
.cta-outline-btn:active,
.cta-outline-btn:focus {
    border-color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, .05);
    color: #fff;
    text-decoration: none;
    outline: none;
}

.about-cta-right {
    padding: 80px 40px 80px 60px;
    background: #fff;
}

.contact-title {
    font-size: clamp(44px, 7vw, 100px);
    margin-bottom: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
}

.contact-title span {
    display: block;
    color: #0a0a0a;
}

.contact-sub {
    font-size: 15px;
    color: #0a0a0a;
    margin-bottom: 40px;
    line-height: 1.6
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #0a0a0a;
    border: 1px solid #2a2a2a;
    padding: 14px 28px;
    transition: border-color .25s, background .25s, gap .3s;
}

.contact-cta:hover,
.contact-cta:active,
.contact-cta:focus {
    border-color: #0a0a0a;
    background: rgba(255, 255, 255, .03);
    gap: 18px;
    color: #0a0a0a;
    text-decoration: none;
    outline: none;
}

.contact-cta svg {
    width: 16px;
    height: 16px;
    stroke: #000;
    fill: none;
    stroke-width: 1.5
}

/* ── FOOTER ── */
footer {
    padding: 64px 40px 40px;
    border-top: 1px solid #1f1f1f;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px
}

.footer-logo img {
    width: 140px;
    opacity: .8
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .02em
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
    line-height: 1.7;
    max-width: 240px
}

.footer-col h5 {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 20px
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    transition: color .25s;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    outline: none;
}

.footer-col ul li a:hover {
    color: #fff
}

.footer-col ul li a img {
    width: 14px;
    height: 14px
}

.footer-social-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid #1f1f1f;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, .25)
}

.back-to-top {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .25s;
    text-decoration: none;
    outline: none;
}

.back-to-top:hover {
    color: #fff;
    text-decoration: none;
    outline: none;
}

.back-to-top svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-delay-1 {
    transition-delay: .1s
}

.reveal-delay-2 {
    transition-delay: .2s
}

.reveal-delay-3 {
    transition-delay: .3s
}

/* TECH */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgb(255 255 255 / 7%);
    border-radius: 999px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 500;
    color: #8a8a9a;
    cursor: none;
    transition: all 0.2s;
    letter-spacing: 0.03em;
}

.tab-btn.active {
    background: #f0f0f4;
    border-color: #f0f0f4;
    color: #0c0c0e;
}

.tech-grid {
    display: flex;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}

.tech-card {
    background: #141417;
    border: 1px solid rgb(255 255 255 / 7%);
    border-radius: 16px;
    padding: 1.5rem 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: none;
    transition: border-color 0.25s, transform 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.5s ease both;
    min-width: 200px;
}

.tech-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 16px;
}

.tech-card:hover {
    border-color: rgb(255 255 255 / 15%);
    background: #1c1c21;
    transform: translateY(-4px);
}

.tech-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 4px;
}

.tech-icon-wrap svg,
.tech-icon-wrap img {
    width: auto;
    height: 24px;
}

.tech-info {
    text-align: center;
    position: relative;
    z-index: 1;
}

.tech-name {
    font-size: 13px;
    font-weight: 500;
    color: #f0f0f4;
    margin-bottom: 3px;
}

.tech-category {
    font-size: 10px;
    font-weight: 400;
    color: #6d6d6d;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

section#tech h2.sec-title {
    margin-bottom: 20px;
}

section#tech p {
    font-size: 20px;
    margin-bottom: 60px;
}

.content-wrap {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {

    .services-layout {
        grid-template-columns: 1fr
    }

    .services-right {
        display: none
    }

    .about-cta-grid {
        grid-template-columns: 1fr
    }

    .about-cta-left {
        border-right: none;
        border-bottom: 1px solid #1f1f1f
    }

    .t-inner {
        grid-template-columns: 200px 1fr;
        gap: 40px
    }
}

@media(max-width:992px) {

    .btn-primary,
    .btn-ghost {
        width: 100%;
        text-align: center;
    }

    .nav {
        padding: 18px 20px !important;
    }

    .work-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 20px;
    }

    .work-grid {
        display: flex !important;
        flex-direction: column;
    }

    .expertise-grid {
        display: flex !important;
        gap: 10px;
        flex-direction: column;
    }

    .hero {
        display: flex !important;
        flex-direction: column;
    }

    .hero-actions {
        display: flex;
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }

    .case-studyslider button.slick-next.slick-arrow {
        display: none !important;
    }

    section#testimonials {
        flex-direction: column;
    }

    .right_clients {
        width: 100% !important;
    }

    .awards-list {
        display: flex !important;
        flex-direction: column;
    }

    .award-item {
        width: 100%;
        text-align: center;
    }

    section#services .services-accordion-item.open .accordion-body {
        flex-wrap: wrap;
    }

    .accordion-desc,
    .accordion-links {
        width: 100%;
    }

    .casesltitle div,
    .casesltitle h3 {
        font-size: 24px;
    }

    .slick-list.draggable {
        padding: 0 10px !important;
    }

    section#work-enterprises .sec-label {
        font-size: 16px;
        letter-spacing: 0;
    }

    .sec-title {
        margin-bottom: 20px;
    }

    .accordion-head {
        padding: 20px 20px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media(max-width:768px) {
    .nav-burger {
        display: flex
    }

    .tech-grid {
        width: 100%;
    }

    .tech-card {
        min-width: 170px;
    }

    .slick-slide {
        margin: 0 10px;
    }

    .casesltitle div,
    .casesltitle h3 {
        font-size: 16px;
    }

    /*.nav{padding:0 20px}
                .nav-links{display:none}
                .nav-burger{display:flex}*/
    .sec {
        padding: 72px 20px
    }

    .stats-row {
        grid-template-columns: 1fr 1fr
    }

    .t-inner {
        grid-template-columns: 1fr
    }

    .t-avatar {
        aspect-ratio: 16/9;
        max-height: 200px
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }

    .about-cta-left {
        padding: 56px 20px
    }

    .about-cta-right {
        padding: 56px 20px
    }

    .work-item-desc {
        display: none
    }

    .client-logos {
        gap: 32px;
        padding: 28px 20px
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media(max-width:480px) {

    .casesltitle div,
    .casesltitle h3 {
        font-size: 16px;
    }

    .stats-row {
        grid-template-columns: 1fr
    }

    .accordion-head {
        padding: 20px
    }

    .accordion-body {
        padding: 0 20px 24px
    }
}

/* NAV BASE */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 40px;
    background: #0d0d0d;
    position: relative;
    margin: 0 auto;
    gap: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    margin-bottom: 0;
    flex: 1;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    font-weight: 300;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    padding: 23px 12px;
    transition: color 0.15s ease;
    display: block;
    letter-spacing: 0.06em;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 1);
}

a:focus,
a:active {
    outline: none;
    text-decoration: none;
}

/* SIMPLE DROPDOWN */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(24 23 23);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 16px;
    display: none;
    min-width: 250px;
    z-index: 999;
    border-radius: 6px;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown a {
    display: block;
    padding: 4px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 13px;
}
.cc3-has-mega:hover .cc3-mega-menu {
    display: block;
}

/* MEGA MENU */
.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: rgb(24 23 23);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    display: none;
    padding: 20px;
    z-index: 99;
    border-radius: 6px;
}

.has-mega:hover .mega-menu {
    display: block;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1024px;
}

.mega-col h4 {
    font-weight: 300;
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-col a {
    display: block;
    padding: 4px 0;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.mega-col a:hover,
.dropdown a:hover {
    color: rgba(255, 255, 255, 1);
}

.cc3-nav-cta {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0d0d0d;
    background: #f5f4f0;
    padding: 10px 22px;
    transition: background 0.2s ease;
    white-space: nowrap;
    margin-left: auto;
    text-decoration: none;
    outline: none;
}

.cc3-nav-cta:hover {
    text-decoration: none;
    outline: none;
    background: #e8e6e0;
    color: #0d0d0d;
}

.tag {
    display: block;
    font-size: 12px;
    color: #ff3b3b;
    font-weight: 600;
    margin: 16px 0 6px;
}

li.has-mega {
    position: static;
}

nav#nav:before,
nav#nav:after {
    display: none;
}

header {
    background: #0d0d0d;
    position: sticky;
    top: 0;
    z-index: 199;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* MOBILE */
@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .dropdown {
        position: static;
    }

    .nav.active .nav-links {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        background: #0d0d0d;
        width: 100%;
        padding: 20px;
        z-index: 9999;
        border-bottom: 1px solid rgb(255 255 255 / 30%);
    }

    .nav-links a {
        padding: 10px 12px;
    }

    .mega-menu {
        position: static;
        box-shadow: none;
        padding: 20px;
        width: 100%;
    }

    .mega-col a {
        padding: 6px 0;
    }

    .dropdown a {
        padding: 6px 0;
    }

    .mega-grid {
        grid-template-columns: 1fr;
    }

    .has-mega:hover .mega-menu {
        display: block;
    }

    .has-mega.active .mega-menu {
        display: block;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

.hero-work-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .06em;
    color: #fff;
    text-transform: uppercase;
    transition: gap .3s;
}

.hero-work-btn:hover,
.hero-work-btn:active,
.hero-work-btn:focus {
    gap: 20px;
    color: #fff;
    text-decoration: none;
    outline: none;
}

.hero-work-btn:hover .arrow-circle {
    border-color: rgba(255, 255, 255, .5)
}

.hero {
    min-height: calc(100vh - 86px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 0px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #1c1c1c;
    z-index: 0;
}

.hero-left {
    position: relative;
    z-index: 1;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888880;
    margin-bottom: 32px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 9vw, 128px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: #f5f4f0;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-title em {
    font-style: normal;
    -webkit-text-stroke: 1.5px #f5f4f0;
    color: transparent;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #888880;
    max-width: 400px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0a0a0a;
    background: #f5f4f0;
    border: none;
    padding: 16px 36px;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #eeece6;
    color: #0a0a0a;
    text-decoration: none;
    outline: none;
}
.cc3-btn-primary {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0d0d0d;
    background: #f5f2ee;
    border: none;
    padding: 15px 32px;
    transition: background 0.2s ease;
    display: inline-block;
}

.cc3-btn-primary:hover {
    background: #e8e6e0;
    color: #0d0d0d;
}

.btn-ghost {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f5f4f0;
    background: transparent;
    border: 1px solid rgba(245, 244, 240, 0.12);
    padding: 16px 36px;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s;
}

.btn-ghost:hover,
.btn-ghost:active,
.btn-ghost:focus {
    border-color: rgba(245, 244, 240, 0.4);
    color: #fff;
    text-decoration: none;
    outline: none;
}

.hero-right {
    position: relative;
    z-index: 1;
    padding: 80px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-stat-block {
    border-top: 1px solid rgba(245, 244, 240, 0.12);
    padding-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    line-height: 1;
    color: #f5f4f0;
}

.stat-label {
    font-size: 13px;
    color: #888880;
    margin-top: 8px;
    letter-spacing: 0.04em;
}

.ticker-wrap {
    background: #f5f4f0;
    overflow: hidden;
    padding: 14px 0;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker-item {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0a0a0a;
    padding: 0 48px;
    border-right: 1px solid rgba(10, 10, 10, 0.15);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.work-section {
    background: #0a0a0a;
    padding: 0 0 120px;
}

.work-header {
    padding: 120px 48px 80px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid rgba(245, 244, 240, 0.12);
}

.work-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.95;
    color: #f5f4f0;
    max-width: 600px;
}

.work-link {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888880;
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 244, 240, 0.12);
    padding-bottom: 4px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.work-link:hover,
.work-link:active,
.work-link:focus {
    color: #f5f4f0;
    border-color: #f5f4f0;
    text-decoration: none;
    outline: none;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.work-grid a {
    text-decoration: none;
    outline: none;
    border: none;
}

.work-card {
    border-right: 1px solid rgba(245, 244, 240, 0.12);
    border-bottom: 1px solid rgba(245, 244, 240, 0.12);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.work-card:nth-child(even) {
    border-right: none;
}

.work-card:hover {
    background: #1c1c1c;
}

.work-card-tag {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888880;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.work-card-tag::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(245, 244, 240, 0.12);
    max-width: 60px;
}

.work-visual {
    width: 100%;
    aspect-ratio: 16/9;
    background: #1c1c1c;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.work-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.work-card:hover .work-visual img {
    transform: scale(1.05);
}

.work-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.55) 0%, transparent 60%);
    pointer-events: none;
}

.work-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #f5f4f0;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.work-card-sub {
    font-size: 13px;
    color: #888880;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.work-card-arrow {
    position: absolute;
    right: 48px;
    bottom: 48px;
    font-size: 20px;
    color: #888880;
    transition: color 0.2s, transform 0.2s;
}

.work-card:hover .work-card-arrow {
    color: #f5f4f0;
    transform: translate(4px, -4px);
}

.cta-section {
    background: #f5f4f0;
    color: #0a0a0a;
    padding: 160px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(100px, 20vw, 260px);
    line-height: 1;
    color: rgba(10, 10, 10, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.4);
    margin-bottom: 32px;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 10vw, 140px);
    line-height: 0.92;
    color: #0a0a0a;
    margin-bottom: 48px;
    font-weight: 700;
}

.cta-title em {
    font-style: normal;
    -webkit-text-stroke: 0.5px #0a0a0a;
    color: transparent;
}

.btn-primary-dark {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f5f4f0;
    background: #0a0a0a;
    border: none;
    padding: 18px 48px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.btn-primary-dark:hover {
    background: #1c1c1c;
    text-decoration: none;
    outline: none;
    color: #fff
}

.awards-section {
    background: #1c1c1c;
    padding: 80px 48px;
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgb(245 244 240 / 12%);
    border-bottom: 1px solid rgb(245 244 240 / 12%);
}

.awards-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888880;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-right: 80px;
    white-space: nowrap;
}

.awards-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(245, 244, 240, 0.12);
    flex: 1;
}

.award-item {
    background: #1c1c1c;
    padding: 40px 32px;
    text-align: center;
}

.award-year {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888880;
    margin-bottom: 12px;
}

.award-name {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    line-height: 1.3;
}

.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999999;
    transform: translate(-50%, -50%);
    transition: width 0.15s, height 0.15s, background 0.15s;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(245, 244, 240, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999999;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease, width 0.2s, height 0.2s;
    mix-blend-mode: difference;
}

section#expertise {
    border-bottom: 2px solid #1f1f1f;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.expertise-left .sec-title {
    margin-bottom: 32px
}

.expertise-left p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .55);
    max-width: 440px;
    margin-bottom: 40px;
}

.expertise-video {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #111;
    max-width: 600px;
    margin: 0 auto;
}

.expertise-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px 10px 10px 100px;
}

.drow-char {
    position: absolute;
    background: rgba(13, 13, 13, 0.95);
    height: 50%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    padding: 6rem 6vw;
    border-radius: 50px 0 0px 50px;
}

/* services pills row */
.expertise-services {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 56px;
}

.svc-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #2a2a2a;
    padding: 12px 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    transition: border-color .25s, color .25s, background .25s;
    cursor: default;
    width: 40%;
}

.svc-pill img {
    width: 20px;
    height: 20px;
    opacity: .7
}

.svc-pill:hover {
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
    background: rgba(255, 255, 255, .03)
}

.expertise-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 8px;
    margin-top: 32px;
    transition: gap .3s, border-color .25s;
}

.expertise-cta:hover,
.expertise-cta:active,
.expertise-cta:focus {
    gap: 16px;
    border-color: rgba(255, 255, 255, .4);
    color: #fff;
    text-decoration: none;
    outline: none;
}

.cc3-mockup {
    background: #0e0f11;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.cc3-mockup-titlebar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: #141518;
}

.cc3-mockup-dots {
    display: flex;
    gap: 5px;
}

.cc3-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cc3-mockup-title {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

.cc3-mockup-body {
    display: flex;
    height: 360px;
}

.cc3-mockup-sidebar {
    width: 52px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    background: #141518;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 4px;
    flex-shrink: 0;
}

.cc3-sidebar-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: linear-gradient(135deg, #5b9cf6, #4ade80);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #0d0d0d;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.cc3-sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 7px 4px;
    border-radius: 6px;
    width: 40px;
    font-size: 8px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.25);
    font-family: 'Inter', sans-serif;
}

.cc3-sidebar-item svg {
    color: currentColor;
}

.cc3-sidebar-item--active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.cc3-mockup-main {
    flex: 1;
    padding: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cc3-mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cc3-mockup-section-title {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.cc3-mockup-badge {
    font-size: 10px;
    font-weight: 600;
    color: #5b9cf6;
    background: rgba(91, 156, 246, 0.15);
    padding: 2px 8px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
}

.cc3-project-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cc3-project-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background 0.15s ease;
}

.cc3-project-item--active {
    background: rgba(255, 255, 255, 0.04);
}

.cc3-project-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cc3-project-dot--green {
    background: #4ade80;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.4);
}

.cc3-project-dot--blue {
    background: #5b9cf6;
}

.cc3-project-dot--amber {
    background: #fbbf24;
}

.cc3-project-dot--purple {
    background: #a78bfa;
}

.cc3-project-info {
    flex: 1;
    min-width: 0;
}

.cc3-project-name {
    font-size: 11px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Inter', sans-serif;
}

.cc3-project-meta {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}

.cc3-project-progress {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}

.cc3-progress-bar {
    width: 48px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.cc3-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #5b9cf6, #4ade80);
    border-radius: 2px;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.cc3-sprint-block {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    padding: 8px 10px;
    background: #141518;
}

.cc3-sprint-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
}

.cc3-sprint-title {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.cc3-sprint-due {
    font-size: 10px;
    color: #5b9cf6;
}

.cc3-sprint-tasks {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-task {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Inter', sans-serif;
}

.cc3-task--done {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.15);
}

.cc3-task--done svg {
    color: #4ade80;
}

.cc3-task--active {
    color: #ffffff;
}

.cc3-task--active svg {
    color: #5b9cf6;
}

/* Floating cards */
.cc3-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1a1c1f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    animation: cc3-float 4s ease-in-out infinite alternate;
    z-index: 2;
}

.cc3-float-card--1 {
    bottom: -12px;
    left: -12px;
    animation-delay: 0s;
}

.cc3-float-card--2 {
    top: -12px;
    right: -12px;
    animation-delay: -2s;
}

@keyframes cc3-float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

.cc3-float-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cc3-float-dot--green {
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.cc3-float-dot--blue {
    background: #5b9cf6;
    box-shadow: 0 0 8px rgba(91, 156, 246, 0.5);
}

.cc3-float-label {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.cc3-float-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
}

.cc3-mockup-dots span:nth-of-type(1) {
    background: #ff6a60;
}

.cc3-mockup-dots span:nth-of-type(2) {
    background: #ffba23;
}

.cc3-mockup-dots span:nth-of-type(3) {
    background: #25b956;
}

.cc3-client-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: center;
    flex-wrap: wrap;
}

.cc3-client-logos img {
    height: 120px;
    width: auto;
    opacity: 0.50;
    filter: brightness(0) invert(1);
    transition: opacity 0.25s ease;
    cursor: none;
}

.cc3-client-logos img:hover {
    opacity: 0.7;
}

.cc3-contact-details {
    color: #4e4e4e;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    gap: 14px;
}

.footer-bottom div {
    display: flex;
    gap: 16px;
}

.footer-bottom div a {
    opacity: 0.7;
    transition: all 0.3s;
    color: #fff;
    text-decoration: none;
    outline: none;
}

.footer-bottom div a:hover {
    opacity: 1;
}


.cc3-careers-hero {
    padding: 100px 40px 80px;
    border-bottom: 1px solid #1f1f1f;
}

.cc3-careers-hero-inner {
    max-width: 760px;
}

.cc3-careers-h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 84px);
    line-height: 0.98;
    letter-spacing: 0.01em;
    color: #f5f2ee;
    margin-bottom: 28px;
    font-weight: 700;
}

.cc3-careers-h1-solid {
    color: #f5f2ee;
}

.cc3-careers-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 540px;
    margin-bottom: 36px;
}

/* ============================================================
   PERKS GRID
============================================================ */

.cc3-perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #1f1f1f;
    border: 1px solid #1f1f1f;
}

.cc3-perk-card {
    background: #0d0d0d;
    padding: 32px 24px;
    transition: background 0.25s ease;
}

.cc3-perk-card:hover {
    background: #1c1c1c;
}

.cc3-perk-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 20px;
}

.cc3-perk-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f2ee;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.cc3-perk-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   DARK SECTION VARIANT (panel background)
============================================================ */

.cc3-sec-dark {
    background: #1c1c1c;
}

/* ============================================================
   HOW WE WORK
============================================================ */

.cc3-how-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
}

.cc3-how-left {
    position: sticky;
    top: 100px;
}

.cc3-how-right {
    display: flex;
    flex-direction: column;
}

.cc3-how-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #424242;
    align-items: center;
}

.cc3-how-item:first-child {
    border-top: 1px solid #424242;
}

.cc3-how-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-how-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: 0;
    font-family: var(--font-body);
}

.cc3-how-text strong {
    color: #f5f2ee;
    font-weight: 500;
}

/* ============================================================
   OPENINGS
============================================================ */

.cc3-openings-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 40px;
    font-family: var(--font-body);
}

.cc3-jobs-list {
    display: flex;
    flex-direction: column;
}

.cc3-job-card {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 26px 0;
    border-bottom: 1px solid #1f1f1f;
    transition: background 0.2s ease;
}

.cc3-job-card:first-child {
    border-top: 1px solid #1f1f1f;
}

.cc3-job-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.cc3-job-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-job-main {
    flex: 1;
}

.cc3-job-title {
    font-size: 19px;
    font-weight: 500;
    color: #f5f2ee;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-job-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 12px;
    max-width: 580px;
}

.cc3-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.cc3-job-meta span {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.cc3-job-apply {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f5f2ee;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 11px 22px;
    transition: border-color 0.2s ease, background 0.2s ease, gap 0.2s ease;
    white-space: nowrap;
}

.cc3-job-apply:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.04);
    gap: 12px;
    color: #f5f2ee;
}

.cc3-job-apply svg {
    flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-how-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cc3-how-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-careers-hero {
        padding: 56px 20px 48px;
    }

    .cc3-perks-grid {
        grid-template-columns: 1fr;
    }

    .cc3-job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cc3-job-apply {
        width: 100%;
        justify-content: center;
    }

    .cc3-job-num {
        display: none;
    }
    .cc3-nav-links.cc3-open {
        overflow: auto;
        max-height: 100%;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-perk-card,
    .cc3-job-card,
    .cc3-job-apply {
        transition: none;
    }
}

.cc3-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.cc3-modal.cc3-modal-active {
    opacity: 1;
    visibility: visible;
}

.cc3-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.cc3-modal-content {
    position: relative;
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 4px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    z-index: 1001;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cc3-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.cc3-modal-header h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--off-white);
    text-transform: uppercase;
    line-height: 1.2;
}

.cc3-modal-header span {
    color: #f5f4f0;
}

.cc3-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--off-white);
    cursor: pointer;
    padding: 0;
    margin: -10px -10px 0 0;
    transition: color 0.2s ease;
}

.cc3-modal-close:hover {
    color: #f5f4f0;
}

.cc3-apply-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cc3-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-group label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--off-white);
}

.cc3-form-group input,
.cc3-form-group textarea {
    background: var(--panel-bg);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--off-white);
    transition: all 0.2s ease;
}

.cc3-form-group input::placeholder,
.cc3-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.cc3-form-group input:focus,
.cc3-form-group textarea:focus {
    outline: none;
    border-color: var(--off-white);
    background: var(--black);
}

.cc3-modal-submit {
    background: var(--off-white);
    color: var(--black);
    border: none;
    padding: 14px 24px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.cc3-modal-submit:hover {
    background: rgba(245, 244, 240, 0.9);
    transform: translateY(-2px);
}

.cc3-modal-submit:active {
    transform: translateY(0);
}

.cc3-modal-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .cc3-modal-content {
        padding: 28px;
        width: 95%;
    }

    .cc3-modal-header h2 {
        font-size: 20px;
    }
}

.cc3-sec-border-top {
    border-top: 1px solid #1f1f1f;
}

.cc3-sec {
    padding: 96px 40px;
}

.cc3-sec-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
    display: block;
}
.cc3-sec-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.05;
    margin-bottom: 48px;
}
.cc3-sec-title span {
    opacity: 0.4;
}

.cc3-ticker-wrap {
    background: #f5f2ee;
    overflow: hidden;
    padding: 13px 0;
}

.cc3-ticker-track {
    display: flex;
    gap: 0;
    animation: cc3-ticker 24s linear infinite;
    white-space: nowrap;
    width: max-content;
}

@keyframes cc3-ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.cc3-ticker-item {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0a0a0a;
    padding: 0 48px;
    border-right: 1px solid rgba(10, 10, 10, 0.12);
}
.cc3-cta-section {
    background: #f5f2ee;
    color: #0a0a0a;
    padding: 140px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cc3-cta-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(100px, 18vw, 240px);
    line-height: 1;
    color: rgba(10, 10, 10, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.cc3-cta-inner {
    position: relative;
    z-index: 1;
}
.cc3-cta-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.4);
    margin-bottom: 28px;
    display: block;
}
.cc3-cta-title {
    font-family: var(--font-display);
    font-size: clamp(60px, 10vw, 120px);
    line-height: 0.92;
    color: #0a0a0a;
    margin-bottom: 48px;
    font-weight: 600;
}

.cc3-cs-hero {
    padding: 100px 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-cs-hero-inner {
    max-width: 760px;
    margin-bottom: 56px;
}

.cc3-cs-h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 84px);
    line-height: 0.98;
    letter-spacing: 0.01em;
    color: #f5f2ee;
    margin-bottom: 28px;
    font-weight: 700;
}

.cc3-cs-h1-solid {
    color: #f5f2ee;
}

.cc3-cs-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 560px;
    margin-bottom: 0;
}

.cc3-cs-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-cs-hero-stat {
    padding: 28px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-cs-hero-stat:last-child {
    border-right: none;
}

.cc3-cs-hero-stat-num {
    font-family: var(--font-display);
    font-size: 40px;
    line-height: 1;
    color: #f5f2ee;
    display: inline-block;
}

.cc3-cs-hero-stat-suffix {
    font-family: var(--font-display);
    font-size: 24px;
    color: #b8f458;
    display: inline-block;
    margin-left: 2px;
    vertical-align: top;
    margin-top: 2px;
}

.cc3-cs-hero-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    margin-top: 6px;
}

/* ============================================================
   FILTER BAR — sticky
============================================================ */

.cc3-cs-filter-wrap {
    position: sticky;
    top: 64px;
    z-index: 50;
    background: #0d0d0d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 40px;
}

.cc3-cs-filter-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.cc3-cs-filter-tabs .cc3-tab-btn span {
    font-family: var(--font-mono);
    font-size: 10px;
    opacity: 0.5;
    margin-left: 4px;
}

/* ============================================================
   GRID SECTION
============================================================ */

.cc3-cs-grid-section {
    padding: 56px 40px 100px;
}

.cc3-cs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-cs-card {
    display: block;
    background: #0d0d0d;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s ease, opacity 0.3s ease, transform 0.3s ease;
}

.cc3-cs-card:hover {
    background: #1c1c1c;
    color: inherit;
}

.cc3-cs-card.cc3-cs-hidden {
    display: none;
}

.cc3-cs-thumb {
    aspect-ratio: 16/10;
    border-radius: 6px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.cc3-cs-thumb--1  { background: linear-gradient(135deg, #0D1B2A, #1A56A0); }
.cc3-cs-thumb--2  { background: linear-gradient(135deg, #0A2342, #0E9F6E); }
.cc3-cs-thumb--3  { background: linear-gradient(135deg, #1A2030, #2E7DD1); }
.cc3-cs-thumb--4  { background: linear-gradient(135deg, #2D1A0A, #E17055); }
.cc3-cs-thumb--5  { background: linear-gradient(135deg, #1A1A2E, #6C5CE7); }
.cc3-cs-thumb--6  { background: linear-gradient(135deg, #0A2E1A, #00B894); }
.cc3-cs-thumb--7  { background: linear-gradient(135deg, #2D1A0A, #E17055); }
.cc3-cs-thumb--8  { background: linear-gradient(135deg, #0D1B2A, #5B9CF6); }
.cc3-cs-thumb--9  { background: linear-gradient(135deg, #1A1A2E, #A78BFA); }
.cc3-cs-thumb--10 { background: linear-gradient(135deg, #0A2342, #4ADE80); }
.cc3-cs-thumb--11 { background: linear-gradient(135deg, #1A2030, #FBBF24); }
.cc3-cs-thumb--12 { background: linear-gradient(135deg, #1A1A2E, #6C5CE7); }
.cc3-cs-thumb--13 { background: linear-gradient(135deg, #0A2342, #0E9F6E); }
.cc3-cs-thumb--14 { background: linear-gradient(135deg, #2D1A0A, #FBBF24); }
.cc3-cs-thumb--15 { background: linear-gradient(135deg, #0D1B2A, #1A56A0); }
.cc3-cs-thumb--16 { background: linear-gradient(135deg, #0A2E1A, #00B894); }
.cc3-cs-thumb--17 { background: linear-gradient(135deg, #1A2030, #2E7DD1); }
.cc3-cs-thumb--18 { background: linear-gradient(135deg, #2D1A0A, #E17055); }
.cc3-cs-thumb--19 { background: linear-gradient(135deg, #1A1A2E, #A78BFA); }
.cc3-cs-thumb--20 { background: linear-gradient(135deg, #0A2342, #4ADE80); }
.cc3-cs-thumb--21 { background: linear-gradient(135deg, #0D1B2A, #5B9CF6); }

.cc3-cs-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cc3-cs-card:hover .cc3-cs-overlay {
    opacity: 1;
}

.cc3-cs-overlay span {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: #f5f2ee;
}

.cc3-cs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.cc3-cs-tags span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
}

.cc3-cs-title {
    font-size: 16px;
    font-weight: 500;
    color: #f5f2ee;
    line-height: 1.4;
    margin-bottom: 0;
    font-family: var(--font-body);
}

.cc3-cs-empty {
    display: none;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    padding: 60px 0;
}

.cc3-cs-empty.cc3-cs-empty--visible {
    display: block;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-cs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-cs-hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-cs-hero {
        padding: 56px 20px 0;
    }

    .cc3-cs-hero-inner {
        margin-bottom: 32px;
    }

    .cc3-cs-hero-stat {
        padding: 20px 16px;
    }

    .cc3-cs-filter-wrap {
        padding: 12px 16px;
        top: 0;
        position: relative;
    }

    .cc3-cs-grid-section {
        padding: 32px 16px 64px;
    }

    .cc3-cs-grid {
        grid-template-columns: 1fr;
    }

    .cc3-cs-card {
        padding: 20px;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-cs-card {
        transition: none;
    }

    .cc3-cs-overlay {
        transition: none;
    }
}
.cc3-hero-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888880;
    margin-bottom: 32px;
}
.cc3-tab-btn {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    background: none;
    border: 1px solid rgb(255 255 255 / 8%);
    padding: 7px 16px;
    cursor: none;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.cc3-tab-btn--active {
    color: #ffffff;
    border-color: rgb(255 255 255 / 14%);
    background: rgba(255, 255, 255, 0.05);
}
a, a:hover, a:active {
    text-decoration: none;
    outline: none;
}
.cc3-btn-primary-dark {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f5f4f0;
    background: #0a0a0a;
    border: none;
    padding: 18px 48px;
    display: inline-block;
    transition: background 0.2s ease;
}
.cc3-btn-primary-dark:hover {
    background: #1c1c1c;
    color: #ffffff;
}


.cc3-contact-hero {
    padding: 100px 40px;
    border-bottom: 1px solid var(--border);
}

.cc3-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cc3-contact-left {
    position: sticky;
    top: 110px;
}

.cc3-contact-h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--off-white);
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-contact-h1-solid {
    color: var(--off-white);
}

.cc3-contact-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 460px;
    margin-bottom: 48px;
}

.cc3-contact-trust {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--border);
}

.cc3-trust-item {
    display: flex;
    flex-direction: column;
    padding: 20px 28px 0 0;
    margin-right: 28px;
}

.cc3-trust-num {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--off-white);
    line-height: 1;
}

.cc3-trust-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 8px;
}

/* ============================================================
   FORM
============================================================ */

.cc3-contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-row--split {
    flex-direction: row;
    gap: 16px;
}

.cc3-form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    margin-bottom: 0;
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgb(255 255 255 / 8%);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
    height: 45px;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-body);
}

/* Budget pills */
.cc3-budget-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cc3-budget-pill {
    cursor: none;
}

.cc3-budget-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cc3-budget-pill span {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgb(255 255 255 / 8%);
    padding: 9px 16px;
    border-radius: 20px;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    font-weight: 300;
}

.cc3-budget-pill:hover span {
    border-color: rgb(255 255 255 / 14%);
    color: rgba(255, 255, 255, 0.7);
}

.cc3-budget-pill input:checked + span {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
}

/* File upload */
.cc3-file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.cc3-file-upload {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    border: 1px dashed var(--border2);
    padding: 12px 16px;
    border-radius: 6px;
    cursor: none;
    transition: border-color 0.2s ease, color 0.2s ease;
    width: fit-content;
    font-weight: 300;
}

.cc3-file-upload:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.65);
}

.cc3-form-privacy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0;
}

.cc3-form-submit {
    align-self: flex-start;
    margin-top: 4px;
}

.cc3-form-success {
    display: none;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--green);
    margin-top: 4px;
    margin-bottom: 0;
}

.cc3-form-success.cc3-form-success--visible {
    display: block;
}

/* ============================================================
   OFFICES
============================================================ */

.cc3-offices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.cc3-office-card {
    background: var(--black);
    padding: 32px 28px;
    transition: background 0.25s ease;
}

.cc3-office-card:hover {
    background: var(--panel);
}

.cc3-office-flag {
    font-size: 28px;
    display: block;
    margin-bottom: 16px;
}

.cc3-office-country {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 12px;
}

.cc3-office-address {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    margin-bottom: 18px;
    min-height: 60px;
}

.cc3-office-phone,
.cc3-office-email {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
    transition: color 0.15s ease;
}

.cc3-office-phone:hover,
.cc3-office-email:hover {
    color: var(--off-white);
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cc3-contact-left {
        position: static;
    }

    .cc3-offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-contact-hero {
        padding: 56px 20px;
    }

    .cc3-form-row--split {
        flex-direction: column;
    }

    .cc3-contact-trust {
        flex-wrap: wrap;
        gap: 16px 0;
    }

    .cc3-trust-item {
        margin-right: 0;
        flex: 1 1 40%;
    }

    .cc3-offices-grid {
        grid-template-columns: 1fr;
    }

    .cc3-office-address {
        min-height: auto;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-office-card,
    .cc3-form-input,
    .cc3-budget-pill span,
    .cc3-file-upload {
        transition: none;
    }
}



.cc3-aws-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-aws-h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 76px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-aws-h1-solid {
    color: #f5f4f0;
}

.cc3-aws-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 540px;
    margin-bottom: 32px;
}

.cc3-aws-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.cc3-aws-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cc3-aws-hero-tags span {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
}

/* ============================================================
   INFRASTRUCTURE DIAGRAM
============================================================ */

.cc3-aws-diagram-section {
    padding: 56px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-aws-diagram-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    margin-bottom: 24px;
}

.cc3-aws-diagram {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cc3-aws-diagram-row {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.cc3-aws-diagram-row--triple {
    flex-wrap: wrap;
}

.cc3-aws-diagram-box {
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 16px 24px;
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.cc3-aws-diagram-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.cc3-aws-diagram-sub {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

.cc3-aws-diagram-arrow {
    color: rgba(255, 255, 255, 0.25);
    font-size: 16px;
    margin: 8px 0;
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-aws-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 560px;
    margin-top: -24px;
    margin-bottom: 40px;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-aws-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-aws-service-card {
    background: #0d0d0d;
    padding: 28px 22px;
    transition: background 0.25s ease;
}

.cc3-aws-service-card:hover {
    background: #1c1c1c;
}

.cc3-aws-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 18px;
}

.cc3-aws-service-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    line-height: 1.3;
    font-family: var(--font-body);
}

.cc3-aws-service-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cc3-aws-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.cc3-aws-service-tags span {
    font-family: var(--font-mono);
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 8px;
    border-radius: 20px;
}

/* ============================================================
   AUDIT BAND
============================================================ */

.cc3-aws-audit-band {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 64px 40px;
    text-align: center;
}

.cc3-aws-audit-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 16px;
}

.cc3-aws-audit-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    color: #f5f4f0;
    max-width: 640px;
    margin: 0 auto 16px;
    line-height: 1.15;
}

.cc3-aws-audit-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

/* ============================================================
   VERTICALS GRID
============================================================ */

.cc3-aws-verticals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-aws-vertical-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-aws-vertical-card:hover {
    background: #1c1c1c;
}

.cc3-aws-vertical-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-aws-vertical-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 16px;
}

.cc3-aws-vertical-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.cc3-aws-vertical-tags span {
    font-family: var(--font-mono);
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 8px;
    border-radius: 20px;
}

/* ============================================================
   TECH STACK
============================================================ */

.cc3-aws-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-aws-tech-cat {
    background: #1c1c1c;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-aws-tech-cat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.cc3-aws-tech-cat-items {
    font-size: 14px;
    color: #f5f4f0;
    font-family: var(--font-body);
    font-weight: 500;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-aws-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.cc3-aws-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-aws-why-card:hover {
    background: #1c1c1c;
}

.cc3-aws-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-aws-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

.cc3-aws-why-cta {
    text-align: center;
}

/* ============================================================
   PROCESS GRID
============================================================ */

.cc3-aws-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-aws-process-step {
    background: #1c1c1c;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-aws-process-step:hover {
    background: #232323;
}

.cc3-aws-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    display: block;
    margin-bottom: 14px;
}

.cc3-aws-process-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-aws-process-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-aws-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-aws-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-aws-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

.cc3-aws-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-aws-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-aws-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-aws-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-aws-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-aws-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-aws-faq-item--open .cc3-aws-faq-icon {
    transform: rotate(45deg);
}

.cc3-aws-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-aws-faq-item--open .cc3-aws-faq-a {
    display: block;
}

/* ============================================================
   TESTIMONIALS
============================================================ */

.cc3-aws-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-aws-t-card {
    background: #1c1c1c;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cc3-aws-t-quote {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.cc3-aws-t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cc3-aws-t-initials {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: #f5f4f0;
    flex-shrink: 0;
}

.cc3-aws-t-name {
    font-size: 13px;
    font-weight: 600;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-aws-t-role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   CTA EXTRAS (extends shared .cc3-cta-section from home3.css)
============================================================ */

.cc3-aws-cta-desc {
    font-size: 15px;
    color: rgba(10, 10, 10, 0.55);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cc3-aws-cta-actions {
    position: relative;
    z-index: 1;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-aws-services-grid,
    .cc3-aws-verticals-grid,
    .cc3-aws-tech-grid,
    .cc3-aws-why-grid,
    .cc3-aws-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-aws-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cc3-aws-faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-aws-faq-left {
        position: static;
    }

    .cc3-aws-diagram-row--triple {
        flex-direction: column;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-aws-hero {
        padding: 56px 20px 40px;
    }

    .cc3-aws-diagram-section {
        padding: 40px 20px;
    }

    .cc3-aws-diagram-box {
        min-width: 0;
    }

    .cc3-aws-services-grid,
    .cc3-aws-verticals-grid,
    .cc3-aws-tech-grid,
    .cc3-aws-why-grid,
    .cc3-aws-process-grid {
        grid-template-columns: 1fr;
    }

    .cc3-aws-audit-band {
        padding: 48px 20px;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-aws-service-card,
    .cc3-aws-vertical-card,
    .cc3-aws-process-step,
    .cc3-aws-faq-icon {
        transition: none;
    }
}
.cc3-btn-ghost {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f5f4f0;
    background: transparent;
    border: 1px solid rgba(245, 244, 240, 0.15);
    padding: 15px 32px;
    transition: border-color 0.2s ease;
    display: inline-block;
}
.cc3-btn-ghost:hover {
    border-color: rgba(245, 244, 240, 0.4);
    color: #ffffff;
}


.cc3-mh-hero {
    padding: 100px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-mh-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-mh-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-mh-h1-solid {
    color: #f5f4f0;
}

.cc3-mh-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 480px;
    margin-bottom: 36px;
}

.cc3-mh-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cc3-mh-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-mh-stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-mh-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 6px;
}

/* Quote form card */
.cc3-mh-form-card {
    background: #1c1c1c;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-mh-form-title {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 6px;
}

.cc3-mh-form-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

.cc3-mh-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-mh-form-submit {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.cc3-mh-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
    margin-top: 4px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-mh-trust-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 40px;
}

.cc3-mh-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cc3-mh-trust-item {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
}

.cc3-mh-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO (shared across hub sections)
============================================================ */

.cc3-mh-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 560px;
    margin-top: -24px;
    margin-bottom: 40px;
}

.cc3-sec-dark {
    background: #1c1c1c;
}

/* ============================================================
   PLATFORMS GRID
============================================================ */

.cc3-mh-platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-mh-platform-card {
    background: #0d0d0d;
    padding: 32px 28px;
    position: relative;
    transition: background 0.25s ease;
}

.cc3-mh-platform-card:hover {
    background: #1c1c1c;
}

.cc3-mh-platform-card--featured {
    background: #15181f;
}

.cc3-mh-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 4px 10px;
    border-radius: 20px;
}

.cc3-mh-platform-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 20px;
}

.cc3-mh-platform-title {
    font-size: 18px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.cc3-mh-platform-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 18px;
}

.cc3-mh-platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.cc3-mh-platform-tags span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
}

.cc3-mh-platform-link {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.cc3-mh-platform-card:hover .cc3-mh-platform-link {
    color: #f5f4f0;
}

/* ============================================================
   PLATFORM CHOOSER
============================================================ */

.cc3-mh-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.cc3-mh-choose-intro {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: 18px;
}

.cc3-mh-choose-body {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.75;
    margin-bottom: 28px;
}

.cc3-mh-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cc3-mh-tab-btn {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 9px 18px;
    cursor: none;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.cc3-mh-tab-btn:hover {
    color: rgba(255, 255, 255, 0.7);
}

.cc3-mh-tab-btn--active {
    color: #0d0d0d;
    background: #f5f4f0;
    border-color: #f5f4f0;
}
.cc3-mh-tab-btn--active:hover {
    color: #0d0d0d;
}

.cc3-mh-tab-panel {
    display: none;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 28px;
}

.cc3-mh-tab-panel--active {
    display: block;
}

.cc3-mh-tab-heading {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.cc3-mh-choose-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.cc3-mh-choose-list li {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.cc3-mh-choose-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.25);
}

.cc3-mh-tab-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
}

.cc3-mh-tech-badge {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
}

.cc3-mh-tab-link {
    font-family: var(--font-mono);
    font-size: 12px;
    color: #f5f4f0;
    margin-left: auto;
}

/* ============================================================
   PROJECTS GRID
============================================================ */

.cc3-mh-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-mh-project-card {
    display: block;
    background: #0d0d0d;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s ease;
}

.cc3-mh-project-card:hover {
    background: #1c1c1c;
    color: inherit;
}

.cc3-mh-project-thumb {
    aspect-ratio: 16/10;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cc3-mh-project-thumb--1 { background: linear-gradient(135deg, #0D1B2A, #1A56A0); }
.cc3-mh-project-thumb--2 { background: linear-gradient(135deg, #2D1A0A, #E17055); }
.cc3-mh-project-thumb--3 { background: linear-gradient(135deg, #1A1A2E, #6C5CE7); }

.cc3-mh-project-initials {
    font-family: var(--font-display);
    font-size: 40px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-mh-project-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 10px;
    border-radius: 20px;
}

.cc3-mh-project-title {
    font-size: 17px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-mh-project-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

.cc3-mh-project-stack span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 9px;
    border-radius: 20px;
}

.cc3-mh-project-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 16px;
}

.cc3-mh-project-link {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.cc3-mh-projects-more {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-mh-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgb(255 255 255 / 8%);
    border: 1px solid rgb(255 255 255 / 8%);
}

.cc3-mh-why-card {
    background: #1c1c1c;
    padding: 28px;
    transition: background 0.25s ease;
}

.cc3-mh-why-card:hover {
    background: #232323;
}

.cc3-mh-why-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-mh-why-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   INDUSTRIES GRID
============================================================ */

.cc3-mh-ind-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-mh-ind-card {
    background: #0d0d0d;
    padding: 24px 18px;
    text-align: center;
    transition: background 0.25s ease;
}

.cc3-mh-ind-card:hover {
    background: #1c1c1c;
}

.cc3-mh-ind-name {
    font-size: 14px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-mh-ind-desc {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-mh-process-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-mh-process-left {
    position: sticky;
    top: 100px;
}

.cc3-mh-process-intro {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-mh-process-right {
    display: flex;
    flex-direction: column;
}

.cc3-mh-process-step {
    display: flex;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-mh-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-mh-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-mh-process-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 6px;
    font-family: var(--font-body);
}

.cc3-mh-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-mh-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-mh-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-mh-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-mh-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-mh-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-mh-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-mh-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-mh-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-mh-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-mh-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-mh-faq-item--open .cc3-mh-faq-icon {
    transform: rotate(45deg);
}

.cc3-mh-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-mh-faq-item--open .cc3-mh-faq-a {
    display: block;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-mh-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cc3-mh-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-mh-choose-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cc3-mh-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-mh-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-mh-ind-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cc3-mh-process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-mh-process-left {
        position: static;
    }

    .cc3-mh-faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-mh-faq-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-mh-hero {
        padding: 56px 20px;
    }

    .cc3-mh-stats-row {
        gap: 8px;
    }

    .cc3-mh-platforms-grid,
    .cc3-mh-projects-grid,
    .cc3-mh-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-mh-ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-mh-trust-inner {
        gap: 14px;
    }

    .cc3-mh-trust-divider {
        display: none;
    }

    .cc3-mh-tabs {
        gap: 4px;
    }

    .cc3-mh-tab-btn {
        flex: 1;
        text-align: center;
        padding: 9px 8px;
        font-size: 10px;
    }

    .cc3-mh-tab-link {
        margin-left: 0;
        width: 100%;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-mh-platform-card,
    .cc3-mh-project-card,
    .cc3-mh-why-card,
    .cc3-mh-ind-card,
    .cc3-mh-faq-icon {
        transition: none;
    }
}



.cc3-ec-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ec-h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 76px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-ec-h1-solid {
    color: #f5f4f0;
}

.cc3-ec-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 580px;
    margin-bottom: 32px;
}

.cc3-ec-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.cc3-ec-platform-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cc3-ec-platform-badge {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
}

.cc3-ec-platform-badge--lead {
    color: #f5f4f0;
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-ec-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 560px;
    margin-top: -24px;
    margin-bottom: 40px;
}

/* ============================================================
   PLATFORMS GRID
============================================================ */

.cc3-ec-platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ec-platform-card {
    background: #0d0d0d;
    padding: 32px 28px;
    position: relative;
    transition: background 0.25s ease;
}

.cc3-ec-platform-card:hover {
    background: #1c1c1c;
}

.cc3-ec-platform-card--featured {
    background: #15181f;
}

.cc3-ec-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 4px 10px;
    border-radius: 20px;
}

.cc3-ec-platform-title {
    font-size: 19px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 14px;
    font-family: var(--font-body);
}

.cc3-ec-platform-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 18px;
}

.cc3-ec-platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.cc3-ec-platform-tags span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
}

.cc3-ec-platform-link {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.cc3-ec-platform-card:hover .cc3-ec-platform-link {
    color: #f5f4f0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-ec-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ec-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ec-service-card:hover {
    background: #232323;
}

.cc3-ec-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-ec-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ec-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROJECTS GRID
============================================================ */

.cc3-ec-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ec-project-card {
    display: block;
    background: #0d0d0d;
    padding: 32px;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s ease;
}

.cc3-ec-project-card:hover {
    background: #1c1c1c;
    color: inherit;
}

.cc3-ec-project-thumb {
    aspect-ratio: 16/9;
    border-radius: 6px;
    margin-bottom: 22px;
    position: relative;
    height: 430px;
    width: 100%;
    overflow: hidden;
}
.cc3-ec-project-thumb img {
    width: 100%;
}
.cc3-ec-project-thumb--1 { background: linear-gradient(135deg, #1A1A2E, #6C5CE7); }
.cc3-ec-project-thumb--2 { background: linear-gradient(135deg, #2D1A0A, #E17055); }

.cc3-ec-project-initials {
    font-family: var(--font-display);
    font-size: 44px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-ec-project-tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 10px;
    border-radius: 20px;
}

.cc3-ec-project-title {
    font-size: 19px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.cc3-ec-project-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.cc3-ec-project-stack span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
}

.cc3-ec-project-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 18px;
}

.cc3-ec-project-link {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.cc3-ec-projects-more {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-ec-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ec-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ec-why-card:hover {
    background: #1c1c1c;
}

.cc3-ec-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ec-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-ec-process-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-ec-process-left {
    position: sticky;
    top: 100px;
}

.cc3-ec-process-intro {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-ec-process-right {
    display: flex;
    flex-direction: column;
}

.cc3-ec-process-step {
    display: flex;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ec-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ec-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-ec-process-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 6px;
    font-family: var(--font-body);
}

.cc3-ec-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-ec-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-ec-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-ec-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-ec-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-ec-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-ec-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ec-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ec-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-ec-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-ec-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-ec-faq-item--open .cc3-ec-faq-icon {
    transform: rotate(45deg);
}

.cc3-ec-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-ec-faq-item--open .cc3-ec-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM
============================================================ */

.cc3-ec-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-ec-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-ec-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-ec-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Shared form primitives — defined here since this page does not
   load contact3.css. If a future shared form stylesheet exists,
   these can be removed in favour of it. */

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-ec-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-ec-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-ec-services-grid,
    .cc3-ec-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-ec-projects-grid {
        grid-template-columns: 1fr;
    }

    .cc3-ec-process-grid,
    .cc3-ec-faq-grid,
    .cc3-ec-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-ec-process-left,
    .cc3-ec-faq-left,
    .cc3-ec-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-ec-hero {
        padding: 56px 20px 40px;
    }

    .cc3-ec-platforms-grid,
    .cc3-ec-services-grid,
    .cc3-ec-why-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-ec-platform-card,
    .cc3-ec-service-card,
    .cc3-ec-project-card,
    .cc3-ec-why-card,
    .cc3-ec-faq-icon {
        transition: none;
    }
}



.cc3-ab-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ab-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 66px);
    line-height: 1.02;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-ab-h1-solid {
    color: #f5f4f0;
}

.cc3-ab-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 640px;
    margin-bottom: 36px;
}

.cc3-ab-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cc3-ab-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 600px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-ab-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-ab-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-ab-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 600px;
    margin-top: -24px;
    margin-bottom: 40px;
}

/* ============================================================
   WHO WE ARE
============================================================ */

.cc3-ab-who-body {
    max-width: 760px;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cc3-ab-who-body p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
}

.cc3-ab-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ab-pillar-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ab-pillar-card:hover {
    background: #1c1c1c;
}

.cc3-ab-pillar-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.cc3-ab-pillar-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-ab-trust-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 40px;
}

.cc3-ab-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cc3-ab-trust-item {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
}

.cc3-ab-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.14);
}

/* ============================================================
   FOUNDERS
============================================================ */

.cc3-ab-founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ab-founder-card {
    background: #0d0d0d;
    padding: 36px;
}

.cc3-ab-founder-photo {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 22px;
    background: #141417;
}

.cc3-ab-founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cc3-ab-founder-name {
    font-size: 20px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.cc3-ab-founder-role {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
}

.cc3-ab-founder-bio {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 16px;
}

.cc3-ab-founder-link {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    display: inline-block;
    margin-top: 8px;
    transition: color 0.15s ease;
}

.cc3-ab-founder-link:hover {
    color: #f5f4f0;
}

/* ============================================================
   SELECTED WORK GRID
============================================================ */

.cc3-ab-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ab-work-card {
    display: block;
    background: #1c1c1c;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s ease;
}

.cc3-ab-work-card:hover {
    background: #232323;
    color: inherit;
}

.cc3-ab-work-thumb {
    aspect-ratio: 16/10;
    border-radius: 6px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 346px;
    overflow: hidden;
}

.cc3-ab-work-thumb--1 { background: linear-gradient(135deg, #0A2342, #0E9F6E); }
.cc3-ab-work-thumb--2 { background: linear-gradient(135deg, #1A2030, #2E7DD1); }
.cc3-ab-work-thumb--3 { background: linear-gradient(135deg, #1A1A2E, #6C5CE7); }
.cc3-ab-work-thumb--4 { background: linear-gradient(135deg, #2D1A0A, #E17055); }
.cc3-ab-work-thumb--5 { background: linear-gradient(135deg, #0D1B2A, #1A56A0); }
.cc3-ab-work-thumb--6 { background: linear-gradient(135deg, #0A2E1A, #00B894); }

.cc3-ab-work-initials {
    font-family: var(--font-display);
    font-size: 36px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-ab-work-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-ab-work-title {
    font-size: 17px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ab-work-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 16px;
}

.cc3-ab-work-link {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.cc3-ab-work-more {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   CORE VALUES GRID
============================================================ */

.cc3-ab-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ab-value-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ab-value-card:hover {
    background: #1c1c1c;
}

.cc3-ab-value-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-ab-value-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.cc3-ab-value-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   TESTIMONIALS
============================================================ */

.cc3-ab-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

.cc3-ab-t-card {
    background: #0d0d0d;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.cc3-ab-t-quote {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 22px;
}

.cc3-ab-t-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.cc3-ab-t-initials {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: #f5f4f0;
    flex-shrink: 0;
}

.cc3-ab-t-name {
    font-size: 13px;
    font-weight: 600;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-ab-t-role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

.cc3-ab-t-source {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: auto;
}

.cc3-ab-clutch-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cc3-ab-clutch-score {
    font-family: var(--font-display);
    font-size: 28px;
    color: #f5f4f0;
}

.cc3-ab-clutch-label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-right: auto;
}

/* ============================================================
   ENGAGEMENT MODELS
============================================================ */

.cc3-ab-engage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.cc3-ab-engage-card {
    background: #1c1c1c;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}

.cc3-ab-engage-title {
    font-size: 17px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.cc3-ab-engage-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 18px;
}

.cc3-ab-engage-best {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.35);
    margin-top: auto;
}

.cc3-ab-engage-cta {
    text-align: center;
}

/* ============================================================
   LOCATIONS
============================================================ */

.cc3-ab-locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ab-location-card {
    background: #0d0d0d;
    padding: 28px 24px;
    position: relative;
    transition: background 0.25s ease;
}

.cc3-ab-location-card:hover {
    background: #1c1c1c;
}

.cc3-ab-location-hq {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.08em;
    color: #f5f4f0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 3px 8px;
    border-radius: 20px;
}

.cc3-ab-location-name {
    font-size: 17px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.cc3-ab-location-phone,
.cc3-ab-location-email {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    transition: color 0.15s ease;
}

.cc3-ab-location-phone:hover,
.cc3-ab-location-email:hover {
    color: #f5f4f0;
}

/* ============================================================
   CTA EXTRAS
============================================================ */

.cc3-ab-cta-desc {
    font-size: 15px;
    color: rgba(10, 10, 10, 0.55);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-ab-pillars-grid,
    .cc3-ab-founders-grid,
    .cc3-ab-work-grid,
    .cc3-ab-values-grid,
    .cc3-ab-testimonials-grid,
    .cc3-ab-engage-grid,
    .cc3-ab-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-ab-stats-row {
        max-width: none;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-ab-hero {
        padding: 56px 20px 40px;
    }

    .cc3-ab-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cc3-ab-pillars-grid,
    .cc3-ab-founders-grid,
    .cc3-ab-work-grid,
    .cc3-ab-values-grid,
    .cc3-ab-testimonials-grid,
    .cc3-ab-engage-grid,
    .cc3-ab-locations-grid {
        grid-template-columns: 1fr;
    }

    .cc3-ab-trust-inner {
        gap: 14px;
    }

    .cc3-ab-trust-divider {
        display: none;
    }

    .cc3-ab-clutch-label {
        margin-right: 0;
        width: 100%;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-ab-pillar-card,
    .cc3-ab-work-card,
    .cc3-ab-value-card,
    .cc3-ab-location-card {
        transition: none;
    }
}



.cc3-ag-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ag-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-ag-h1-solid {
    color: #f5f4f0;
}

.cc3-ag-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-ag-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-ag-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-ag-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-ag-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-ag-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-ag-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-ag-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-ag-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-ag-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   WHEN-ANGULAR GRID
============================================================ */

.cc3-ag-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ag-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-ag-when-card:hover {
    background: #1c1c1c;
}

.cc3-ag-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-ag-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-ag-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ag-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ag-service-card:hover {
    background: #1f1f1f;
}

.cc3-ag-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-ag-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ag-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (new component — challenge/solution/impact
   block with real media+content, replacing card-and-link only)
============================================================ */

.cc3-ag-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
}

.cc3-ag-case-media {
    position: sticky;
    top: 100px;
}

.cc3-ag-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    background: linear-gradient(135deg, #1A1A2E, #6C5CE7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-ag-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-ag-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-ag-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-ag-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-ag-case-block {
    margin-bottom: 20px;
}

.cc3-ag-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-ag-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}

.cc3-ag-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ag-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-ag-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-ag-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-ag-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-ag-projects-more {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-ag-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ag-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ag-why-card:hover {
    background: #1c1c1c;
}

.cc3-ag-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ag-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-ag-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-ag-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ag-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ag-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-ag-process-body {
    flex: 1;
}

.cc3-ag-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-ag-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-ag-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-ag-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-ag-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-ag-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-ag-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-ag-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ag-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ag-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-ag-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-ag-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-ag-faq-item--open .cc3-ag-faq-icon {
    transform: rotate(45deg);
}

.cc3-ag-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-ag-faq-item--open .cc3-ag-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-ag-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-ag-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-ag-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-ag-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-ag-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-ag-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-ag-when-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-ag-services-grid,
    .cc3-ag-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-ag-case-grid {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-ag-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-ag-faq-grid,
    .cc3-ag-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-ag-faq-left,
    .cc3-ag-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-ag-hero {
        padding: 56px 20px 40px;
    }

    .cc3-ag-when-grid,
    .cc3-ag-services-grid,
    .cc3-ag-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-ag-stats-row {
        max-width: 100%;
    }

    .cc3-ag-case-grid {
        padding: 22px;
    }

    .cc3-ag-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-ag-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-ag-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-ag-when-card,
    .cc3-ag-service-card,
    .cc3-ag-why-card,
    .cc3-ag-faq-icon {
        transition: none;
    }
}


.cc3-fl-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-fl-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-fl-h1-solid {
    color: #f5f4f0;
}

.cc3-fl-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin-bottom: 32px;
}

.cc3-fl-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-fl-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 560px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-fl-stat-num {
    font-family: var(--font-display);
    font-size: 30px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-fl-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-fl-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-fl-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-fl-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-fl-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-fl-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 620px;
    margin-bottom: 16px;
}

.cc3-sec-title + .cc3-fl-section-intro {
    margin-top: 8px;
}

/* ============================================================
   FACTS GRID (what is Flutter)
============================================================ */

.cc3-fl-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.cc3-fl-fact-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-fl-fact-card:hover {
    background: #1c1c1c;
}

.cc3-fl-fact-num {
    font-family: var(--font-display);
    font-size: 30px;
    color: #f5f4f0;
    display: block;
    margin-bottom: 14px;
}

.cc3-fl-fact-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-fl-fact-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-fl-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-fl-service-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-sec-dark .cc3-fl-service-card {
    background: #1c1c1c;
}

.cc3-fl-service-card:hover {
    background: #1f1f1f;
}

.cc3-fl-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-fl-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-fl-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-fl-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-fl-why-card:hover {
    background: #1c1c1c;
}

.cc3-fl-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-fl-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   COMPARISON TABLE (Flutter vs React Native)
============================================================ */

.cc3-fl-compare-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    margin-top: 32px;
    margin-bottom: 24px;
}

.cc3-fl-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.cc3-fl-compare-table th,
.cc3-fl-compare-table td {
    text-align: left;
    padding: 16px 20px;
    font-size: 13.5px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: top;
}

.cc3-fl-compare-table thead th {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    background: #141417;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-fl-compare-table tbody td:first-child {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    width: 140px;
}

.cc3-fl-compare-table tbody td {
    color: rgba(255, 255, 255, 0.55);
}

.cc3-fl-compare-table tbody td:nth-child(2) {
    color: #f5f4f0;
}

.cc3-fl-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.cc3-fl-compare-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.cc3-fl-compare-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    max-width: 720px;
    margin-bottom: 0;
}

.cc3-fl-compare-note strong {
    color: #f5f4f0;
}

/* ============================================================
   INDUSTRIES GRID
============================================================ */

.cc3-fl-ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-fl-ind-card {
    background: #0d0d0d;
    padding: 22px 20px;
    transition: background 0.25s ease;
}

.cc3-fl-ind-card:hover {
    background: #1c1c1c;
}

.cc3-fl-ind-name {
    font-size: 14.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-fl-ind-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-fl-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-fl-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-fl-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-fl-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-fl-process-body {
    flex: 1;
}

.cc3-fl-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-fl-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 10px;
    max-width: 680px;
}

.cc3-fl-process-time {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   PROJECTS GRID
============================================================ */

.cc3-fl-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-fl-project-card {
    display: block;
    background: #0d0d0d;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s ease;
}

.cc3-fl-project-card:hover {
    background: #1c1c1c;
    color: inherit;
}

.cc3-fl-project-thumb {
    aspect-ratio: 16/10;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cc3-fl-project-thumb--1 { background: linear-gradient(135deg, #1A1A2E, #6C5CE7); }
.cc3-fl-project-thumb--2 { background: linear-gradient(135deg, #0A2E1A, #00B894); }
.cc3-fl-project-thumb--3 { background: linear-gradient(135deg, #2D1A0A, #E17055); }
.cc3-fl-project-thumb--4 { background: linear-gradient(135deg, #0A1F2D, #0984E3); }
.cc3-fl-project-thumb--5 { background: linear-gradient(135deg, #2D0A1F, #E84393); }
.cc3-fl-project-thumb--6 { background: linear-gradient(135deg, #1F2D0A, #00CEC9); }

.cc3-fl-project-initials {
    font-family: var(--font-display);
    font-size: 38px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-fl-project-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 10px;
}

.cc3-fl-project-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-fl-project-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 14px;
}

.cc3-fl-project-link {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.cc3-fl-projects-more {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   TESTIMONIALS
============================================================ */

.cc3-fl-clutch-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 28px;
    margin-bottom: 40px;
}

.cc3-fl-clutch-stat {
    background: #141417;
    padding: 22px 20px;
    text-align: center;
}

.cc3-fl-clutch-num {
    font-family: var(--font-display);
    font-size: 26px;
    color: #f5f4f0;
    display: block;
    margin-bottom: 6px;
}

.cc3-fl-clutch-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    line-height: 1.4;
}

.cc3-fl-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-fl-t-card {
    background: #141417;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cc3-fl-t-quote {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 24px;
}

.cc3-fl-t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cc3-fl-t-initials {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: #f5f4f0;
    flex-shrink: 0;
}

.cc3-fl-t-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #f5f4f0;
}

.cc3-fl-t-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

/* ============================================================
   ENGAGEMENT MODELS
============================================================ */

.cc3-fl-engage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-fl-engage-card {
    background: #0d0d0d;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: background 0.25s ease;
}

.cc3-fl-engage-card:hover {
    background: #1c1c1c;
}

.cc3-fl-engage-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-fl-engage-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

.cc3-fl-engage-best {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

/* ============================================================
   PRICING
============================================================ */

.cc3-fl-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-fl-price-card {
    background: #141417;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    transition: background 0.25s ease;
}

.cc3-fl-price-card:hover {
    background: #232323;
}

.cc3-fl-price-title {
    font-size: 14.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.cc3-fl-price-range {
    font-family: var(--font-display);
    font-size: 26px;
    color: #f5f4f0;
    margin-bottom: 18px;
}

.cc3-fl-price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    flex: 1;
}

.cc3-fl-price-list li {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    padding: 6px 0 6px 18px;
    position: relative;
}

.cc3-fl-price-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
}

.cc3-fl-price-save {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-fl-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-fl-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-fl-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-fl-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-fl-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-fl-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-fl-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-fl-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-fl-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-fl-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-fl-faq-item--open .cc3-fl-faq-icon {
    transform: rotate(45deg);
}

.cc3-fl-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-fl-faq-item--open .cc3-fl-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives, kept consistent with
   contact3.css / ecommerce3.css / webdev3.css pattern)
============================================================ */

.cc3-fl-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-fl-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-fl-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-fl-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-fl-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-fl-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-fl-facts-grid,
    .cc3-fl-services-grid,
    .cc3-fl-why-grid,
    .cc3-fl-projects-grid,
    .cc3-fl-engage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-fl-ind-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cc3-fl-clutch-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-fl-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cc3-fl-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-fl-faq-grid,
    .cc3-fl-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-fl-faq-left,
    .cc3-fl-quote-left {
        position: static;
    }

    .cc3-fl-stats-row {
        max-width: 100%;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-fl-hero {
        padding: 56px 20px 40px;
    }

    .cc3-fl-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
    }

    .cc3-fl-facts-grid,
    .cc3-fl-services-grid,
    .cc3-fl-why-grid,
    .cc3-fl-ind-grid,
    .cc3-fl-projects-grid,
    .cc3-fl-engage-grid,
    .cc3-fl-pricing-grid {
        grid-template-columns: 1fr;
    }

    .cc3-fl-clutch-stats {
        grid-template-columns: 1fr 1fr;
    }

    .cc3-fl-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-fl-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-fl-fact-card,
    .cc3-fl-service-card,
    .cc3-fl-why-card,
    .cc3-fl-project-card,
    .cc3-fl-engage-card,
    .cc3-fl-price-card,
    .cc3-fl-ind-card,
    .cc3-fl-faq-icon {
        transition: none;
    }
}


.cc3-io-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-io-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-io-h1-solid {
    color: #f5f4f0;
}

.cc3-io-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-io-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-io-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-io-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-io-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-io-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   TECH STACK GRID
============================================================ */

.cc3-io-stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-io-stack-card {
    background: #0d0d0d;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cc3-io-stack-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-io-stack-items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cc3-io-stack-items span {
    font-size: 13px;
    color: #f5f4f0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px 12px;
    border-radius: 20px;
}

/* ============================================================
   WHEN-TO-CHOOSE-NATIVE GRID
============================================================ */

.cc3-io-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-io-when-card {
    background: #1c1c1c;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-io-when-card:hover {
    background: #1f1f1f;
}

.cc3-io-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-io-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-io-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-io-service-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-io-service-card:hover {
    background: #1c1c1c;
}

.cc3-io-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-io-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-io-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROJECTS GRID
============================================================ */

.cc3-io-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-io-project-card {
    display: block;
    background: #1c1c1c;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s ease;
}

.cc3-io-project-card:hover {
    background: #232323;
    color: inherit;
}

.cc3-io-project-thumb {
    aspect-ratio: 16/10;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    height: 344px;
    overflow: hidden;
}

.cc3-io-project-thumb--1 { background: linear-gradient(135deg, #1A1A2E, #6C5CE7); }
.cc3-io-project-thumb--2 { background: linear-gradient(135deg, #2D0A1F, #E84393); }
.cc3-io-project-thumb--3 { background: linear-gradient(135deg, #0A2E1A, #00B894); }

.cc3-io-project-initials {
    font-family: var(--font-display);
    font-size: 38px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-io-project-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 10px;
    border-radius: 20px;
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.cc3-io-project-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-io-project-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

.cc3-io-project-stack span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 9px;
    border-radius: 20px;
}

.cc3-io-project-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 16px;
}

.cc3-io-project-link {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.cc3-io-projects-more {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-io-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-io-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-io-why-card:hover {
    background: #1c1c1c;
}

.cc3-io-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-io-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-io-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-io-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-io-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-io-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-io-process-body {
    flex: 1;
}

.cc3-io-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-io-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-io-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-io-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-io-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-io-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-io-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-io-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-io-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-io-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-io-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-io-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-io-faq-item--open .cc3-io-faq-icon {
    transform: rotate(45deg);
}

.cc3-io-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-io-faq-item--open .cc3-io-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-io-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-io-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-io-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-io-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-io-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-io-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-io-stack-grid,
    .cc3-io-when-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-io-services-grid,
    .cc3-io-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-io-projects-grid {
        grid-template-columns: 1fr;
    }

    .cc3-io-faq-grid,
    .cc3-io-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-io-faq-left,
    .cc3-io-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-io-hero {
        padding: 56px 20px 40px;
    }

    .cc3-io-stack-grid,
    .cc3-io-when-grid,
    .cc3-io-services-grid,
    .cc3-io-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-io-stats-row {
        max-width: 100%;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-io-when-card,
    .cc3-io-service-card,
    .cc3-io-project-card,
    .cc3-io-why-card,
    .cc3-io-faq-icon {
        transition: none;
    }
}



.cc3-js-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-js-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-js-h1-solid {
    color: #f5f4f0;
}

.cc3-js-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-js-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-js-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-js-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-js-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-js-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-js-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-js-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-js-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-js-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-js-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-js-cover-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-js-cover-card:hover {
    background: #1c1c1c;
}

.cc3-js-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-js-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-js-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-js-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-js-service-card:hover {
    background: #1f1f1f;
}

.cc3-js-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-js-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-js-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-js-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
    margin-bottom: 24px;
}

.cc3-js-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-js-case-grid--reverse .cc3-js-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-js-case-grid--reverse .cc3-js-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-js-case-media {
    position: sticky;
    top: 100px;
}

.cc3-js-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-js-case-thumb--1 { background: linear-gradient(135deg, #1A1A2E, #6C5CE7); }
.cc3-js-case-thumb--2 { background: linear-gradient(135deg, #2D1A0A, #E17055); }

.cc3-js-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-js-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-js-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-js-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-js-case-block {
    margin-bottom: 20px;
}

.cc3-js-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-js-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}

.cc3-js-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-js-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-js-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-js-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-js-why-card:hover {
    background: #1c1c1c;
}

.cc3-js-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-js-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-js-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-js-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-js-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-js-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-js-process-body {
    flex: 1;
}

.cc3-js-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-js-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-js-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-js-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-js-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-js-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-js-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-js-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-js-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-js-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-js-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-js-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-js-faq-item--open .cc3-js-faq-icon {
    transform: rotate(45deg);
}

.cc3-js-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-js-faq-item--open .cc3-js-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-js-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-js-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-js-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-js-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-js-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-js-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-js-cover-grid,
    .cc3-js-services-grid,
    .cc3-js-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-js-case-grid,
    .cc3-js-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-js-case-grid--reverse .cc3-js-case-media,
    .cc3-js-case-grid--reverse .cc3-js-case-content {
        grid-column: 1;
    }

    .cc3-js-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-js-faq-grid,
    .cc3-js-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-js-faq-left,
    .cc3-js-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-js-hero {
        padding: 56px 20px 40px;
    }

    .cc3-js-cover-grid,
    .cc3-js-services-grid,
    .cc3-js-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-js-stats-row {
        max-width: 100%;
    }

    .cc3-js-case-grid {
        padding: 22px;
    }

    .cc3-js-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-js-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-js-cover-card,
    .cc3-js-service-card,
    .cc3-js-why-card,
    .cc3-js-faq-icon {
        transition: none;
    }
}

.cc3-lv-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-lv-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-lv-h1-solid {
    color: #f5f4f0;
}

.cc3-lv-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-lv-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-lv-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-lv-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-lv-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-lv-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   SOLUTIONS GRID
============================================================ */

.cc3-lv-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-lv-solution-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-lv-solution-card:hover {
    background: #1c1c1c;
}

.cc3-lv-solution-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-lv-solution-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHY LARAVEL FEATURE GRID
============================================================ */

.cc3-lv-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-lv-feature-card {
    background: #1c1c1c;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-lv-feature-card:hover {
    background: #1f1f1f;
}

.cc3-lv-feature-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-lv-feature-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROJECTS GRID
============================================================ */

.cc3-lv-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-lv-project-card {
    display: block;
    background: #0d0d0d;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s ease;
}

.cc3-lv-project-card:hover {
    background: #1c1c1c;
    color: inherit;
}

.cc3-lv-project-thumb {
    aspect-ratio: 16/10;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    max-height: 344px;
    overflow: hidden;
}

.cc3-lv-project-thumb--1 { background: linear-gradient(135deg, #2D1A0A, #E17055); }
.cc3-lv-project-thumb--2 { background: linear-gradient(135deg, #0A1F2D, #0984E3); }
.cc3-lv-project-thumb--3 { background: linear-gradient(135deg, #1A1A2E, #6C5CE7); }

.cc3-lv-project-initials {
    font-family: var(--font-display);
    font-size: 38px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-lv-project-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 10px;
    border-radius: 20px;
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.cc3-lv-project-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-lv-project-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

.cc3-lv-project-stack span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 9px;
    border-radius: 20px;
}

.cc3-lv-project-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 16px;
}

.cc3-lv-project-link {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.cc3-lv-projects-more {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-lv-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-lv-why-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-lv-why-card:hover {
    background: #1f1f1f;
}

.cc3-lv-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-lv-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-lv-process-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-lv-process-left {
    position: sticky;
    top: 100px;
}

.cc3-lv-process-intro {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-lv-process-right {
    display: flex;
    flex-direction: column;
}

.cc3-lv-process-step {
    display: flex;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-lv-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-lv-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-lv-process-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 6px;
    font-family: var(--font-body);
}

.cc3-lv-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-lv-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-lv-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-lv-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-lv-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-lv-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-lv-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-lv-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-lv-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-lv-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-lv-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-lv-faq-item--open .cc3-lv-faq-icon {
    transform: rotate(45deg);
}

.cc3-lv-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-lv-faq-item--open .cc3-lv-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-lv-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-lv-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-lv-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-lv-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-lv-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-lv-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-lv-solutions-grid,
    .cc3-lv-feature-grid,
    .cc3-lv-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-lv-projects-grid {
        grid-template-columns: 1fr;
    }

    .cc3-lv-process-grid,
    .cc3-lv-faq-grid,
    .cc3-lv-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-lv-process-left,
    .cc3-lv-faq-left,
    .cc3-lv-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-lv-hero {
        padding: 56px 20px 40px;
    }

    .cc3-lv-solutions-grid,
    .cc3-lv-feature-grid,
    .cc3-lv-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-lv-stats-row {
        max-width: 100%;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-lv-solution-card,
    .cc3-lv-feature-card,
    .cc3-lv-project-card,
    .cc3-lv-why-card,
    .cc3-lv-faq-icon {
        transition: none;
    }
}


.cc3-nd-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-nd-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-nd-h1-solid {
    color: #f5f4f0;
}

.cc3-nd-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-nd-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-nd-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-nd-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-nd-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-nd-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-nd-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-nd-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-nd-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-nd-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-nd-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-nd-cover-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-nd-cover-card:hover {
    background: #1c1c1c;
}

.cc3-nd-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-nd-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-nd-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-nd-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-nd-when-card:hover {
    background: #1c1c1c;
}

.cc3-nd-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-nd-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-nd-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-nd-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-nd-service-card:hover {
    background: #1f1f1f;
}

.cc3-nd-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-nd-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-nd-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-nd-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
    margin-bottom: 24px;
}

.cc3-nd-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-nd-case-grid--reverse .cc3-nd-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-nd-case-grid--reverse .cc3-nd-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-nd-case-media {
    position: sticky;
    top: 100px;
}

.cc3-nd-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-nd-case-thumb--1 { background: linear-gradient(135deg, #0A2818, #3FA66A); }
.cc3-nd-case-thumb--2 { background: linear-gradient(135deg, #1A2818, #6CB33F); }

.cc3-nd-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-nd-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-nd-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-nd-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-nd-case-block {
    margin-bottom: 20px;
}

.cc3-nd-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-nd-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-nd-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-nd-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-nd-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-nd-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-nd-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-nd-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-nd-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-nd-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-nd-why-card:hover {
    background: #1c1c1c;
}

.cc3-nd-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-nd-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-nd-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-nd-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-nd-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-nd-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-nd-process-body {
    flex: 1;
}

.cc3-nd-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-nd-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-nd-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-nd-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-nd-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-nd-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-nd-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-nd-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-nd-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-nd-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-nd-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-nd-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-nd-faq-item--open .cc3-nd-faq-icon {
    transform: rotate(45deg);
}

.cc3-nd-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-nd-faq-item--open .cc3-nd-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-nd-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-nd-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-nd-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-nd-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-nd-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-nd-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-nd-cover-grid,
    .cc3-nd-when-grid,
    .cc3-nd-services-grid,
    .cc3-nd-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-nd-case-grid,
    .cc3-nd-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-nd-case-grid--reverse .cc3-nd-case-media,
    .cc3-nd-case-grid--reverse .cc3-nd-case-content {
        grid-column: 1;
    }

    .cc3-nd-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-nd-faq-grid,
    .cc3-nd-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-nd-faq-left,
    .cc3-nd-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-nd-hero {
        padding: 56px 20px 40px;
    }

    .cc3-nd-cover-grid,
    .cc3-nd-when-grid,
    .cc3-nd-services-grid,
    .cc3-nd-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-nd-stats-row {
        max-width: 100%;
    }

    .cc3-nd-case-grid {
        padding: 22px;
    }

    .cc3-nd-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-nd-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-nd-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-nd-cover-card,
    .cc3-nd-when-card,
    .cc3-nd-service-card,
    .cc3-nd-why-card,
    .cc3-nd-faq-icon {
        transition: none;
    }
}


.cc3-rj-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-rj-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-rj-h1-solid {
    color: #f5f4f0;
}

.cc3-rj-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-rj-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-rj-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-rj-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-rj-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-rj-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   ARCHITECTURE APPROACH GRID
============================================================ */

.cc3-rj-approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-rj-approach-card {
    background: #0d0d0d;
    padding: 28px 26px;
    transition: background 0.25s ease;
}

.cc3-rj-approach-card:hover {
    background: #1c1c1c;
}

.cc3-rj-approach-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 12px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-rj-approach-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-rj-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-rj-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-rj-service-card:hover {
    background: #1f1f1f;
}

.cc3-rj-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-rj-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-rj-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROJECTS GRID
============================================================ */

.cc3-rj-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-rj-project-card {
    display: block;
    background: #1c1c1c;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s ease;
}

.cc3-rj-project-card:hover {
    background: #232323;
    color: inherit;
}

.cc3-rj-project-thumb {
    aspect-ratio: 16/9;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    max-height: 450px;
    overflow: hidden;
}

.cc3-rj-project-thumb--1 { background: linear-gradient(135deg, #1A1A2E, #6C5CE7); }
.cc3-rj-project-thumb--2 { background: linear-gradient(135deg, #0A2E1A, #00B894); }

.cc3-rj-project-initials {
    font-family: var(--font-display);
    font-size: 40px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-rj-project-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 10px;
    border-radius: 20px;
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.cc3-rj-project-title {
    font-size: 17px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-rj-project-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

.cc3-rj-project-stack span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 9px;
    border-radius: 20px;
}

.cc3-rj-project-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 16px;
}

.cc3-rj-project-link {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.cc3-rj-projects-more {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-rj-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-rj-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-sec-dark .cc3-rj-why-card {
    background: #1c1c1c;
}

.cc3-rj-why-card:hover {
    background: #1f1f1f;
}

.cc3-rj-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-rj-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-rj-process-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-rj-process-left {
    position: sticky;
    top: 100px;
}

.cc3-rj-process-intro {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-rj-process-right {
    display: flex;
    flex-direction: column;
}

.cc3-rj-process-step {
    display: flex;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-rj-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-rj-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-rj-process-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 6px;
    font-family: var(--font-body);
}

.cc3-rj-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-rj-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-rj-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-rj-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-rj-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-rj-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-rj-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-rj-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-rj-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-rj-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-rj-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-rj-faq-item--open .cc3-rj-faq-icon {
    transform: rotate(45deg);
}

.cc3-rj-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-rj-faq-item--open .cc3-rj-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-rj-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-rj-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-rj-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-rj-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-rj-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-rj-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-rj-approach-grid,
    .cc3-rj-services-grid,
    .cc3-rj-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-rj-projects-grid {
        grid-template-columns: 1fr;
    }

    .cc3-rj-process-grid,
    .cc3-rj-faq-grid,
    .cc3-rj-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-rj-process-left,
    .cc3-rj-faq-left,
    .cc3-rj-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-rj-hero {
        padding: 56px 20px 40px;
    }

    .cc3-rj-approach-grid,
    .cc3-rj-services-grid,
    .cc3-rj-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-rj-stats-row {
        max-width: 100%;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-rj-approach-card,
    .cc3-rj-service-card,
    .cc3-rj-project-card,
    .cc3-rj-why-card,
    .cc3-rj-faq-icon {
        transition: none;
    }
}



.cc3-sf-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-sf-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-sf-h1-solid {
    color: #f5f4f0;
}

.cc3-sf-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-sf-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-sf-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-sf-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-sf-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-sf-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-sf-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-sf-service-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-sf-service-card:hover {
    background: #1c1c1c;
}

.cc3-sf-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-sf-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-sf-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SHOPIFY VS PLUS COMPARE GRID
============================================================ */

.cc3-sf-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-sf-compare-card {
    background: #1c1c1c;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    transition: background 0.25s ease;
}

.cc3-sf-compare-card:hover {
    background: #1f1f1f;
}

.cc3-sf-compare-title {
    font-size: 18px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.cc3-sf-compare-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.cc3-sf-compare-best {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

/* ============================================================
   PROJECTS GRID
============================================================ */

.cc3-sf-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-sf-project-card {
    display: block;
    background: #0d0d0d;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s ease;
}

.cc3-sf-project-card:hover {
    background: #1c1c1c;
    color: inherit;
}

.cc3-sf-project-thumb {
    aspect-ratio: 16/9;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    max-height: 450px;
    overflow: hidden;
}

.cc3-sf-project-thumb--1 { background: linear-gradient(135deg, #2D1A0A, #E17055); }
.cc3-sf-project-thumb--2 { background: linear-gradient(135deg, #1A1A2E, #6C5CE7); }

.cc3-sf-project-initials {
    font-family: var(--font-display);
    font-size: 40px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-sf-project-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 10px;
    border-radius: 20px;
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.cc3-sf-project-title {
    font-size: 17px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-sf-project-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

.cc3-sf-project-stack span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 9px;
    border-radius: 20px;
}

.cc3-sf-project-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 16px;
}

.cc3-sf-project-link {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.cc3-sf-projects-more {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-sf-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-sf-why-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-sf-why-card:hover {
    background: #1f1f1f;
}

.cc3-sf-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-sf-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-sf-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-sf-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-sf-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-sf-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-sf-process-body {
    flex: 1;
}

.cc3-sf-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-sf-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-sf-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-sf-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-sf-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-sf-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-sf-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-sf-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-sf-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-sf-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-sf-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-sf-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-sf-faq-item--open .cc3-sf-faq-icon {
    transform: rotate(45deg);
}

.cc3-sf-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-sf-faq-item--open .cc3-sf-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-sf-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-sf-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-sf-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-sf-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-sf-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-sf-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-sf-services-grid,
    .cc3-sf-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-sf-compare-grid,
    .cc3-sf-projects-grid {
        grid-template-columns: 1fr;
    }

    .cc3-sf-faq-grid,
    .cc3-sf-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-sf-faq-left,
    .cc3-sf-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-sf-hero {
        padding: 56px 20px 40px;
    }

    .cc3-sf-services-grid,
    .cc3-sf-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-sf-stats-row {
        max-width: 100%;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-sf-service-card,
    .cc3-sf-compare-card,
    .cc3-sf-project-card,
    .cc3-sf-why-card,
    .cc3-sf-faq-icon {
        transition: none;
    }
}


.cc3-vu-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-vu-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-vu-h1-solid {
    color: #f5f4f0;
}

.cc3-vu-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-vu-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-vu-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-vu-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-vu-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-vu-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-vu-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-vu-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-vu-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-vu-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   WHEN-VUE GRID
============================================================ */

.cc3-vu-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-vu-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-vu-when-card:hover {
    background: #1c1c1c;
}

.cc3-vu-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-vu-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-vu-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-vu-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-vu-service-card:hover {
    background: #1f1f1f;
}

.cc3-vu-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-vu-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-vu-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3)
============================================================ */

.cc3-vu-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
}

.cc3-vu-case-media {
    position: sticky;
    top: 100px;
}

.cc3-vu-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    background: linear-gradient(135deg, #2D0A1F, #E84393);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-vu-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-vu-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-vu-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-vu-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-vu-case-block {
    margin-bottom: 20px;
}

.cc3-vu-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-vu-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}

.cc3-vu-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-vu-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-vu-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-vu-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-vu-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-vu-projects-more {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-vu-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-vu-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-vu-why-card:hover {
    background: #1c1c1c;
}

.cc3-vu-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-vu-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-vu-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-vu-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-vu-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-vu-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-vu-process-body {
    flex: 1;
}

.cc3-vu-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-vu-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-vu-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-vu-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-vu-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-vu-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-vu-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-vu-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-vu-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-vu-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-vu-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-vu-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-vu-faq-item--open .cc3-vu-faq-icon {
    transform: rotate(45deg);
}

.cc3-vu-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-vu-faq-item--open .cc3-vu-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-vu-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-vu-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-vu-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-vu-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-vu-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-vu-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-vu-when-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-vu-services-grid,
    .cc3-vu-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-vu-case-grid {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-vu-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-vu-faq-grid,
    .cc3-vu-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-vu-faq-left,
    .cc3-vu-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-vu-hero {
        padding: 56px 20px 40px;
    }

    .cc3-vu-when-grid,
    .cc3-vu-services-grid,
    .cc3-vu-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-vu-stats-row {
        max-width: 100%;
    }

    .cc3-vu-case-grid {
        padding: 22px;
    }

    .cc3-vu-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-vu-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-vu-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-vu-when-card,
    .cc3-vu-service-card,
    .cc3-vu-why-card,
    .cc3-vu-faq-icon {
        transition: none;
    }
}


.cc3-nt-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-nt-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-nt-h1-solid {
    color: #f5f4f0;
}

.cc3-nt-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-nt-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-nt-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-nt-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-nt-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-nt-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-nt-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-nt-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-nt-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-nt-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-nt-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-nt-cover-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-nt-cover-card:hover {
    background: #1c1c1c;
}

.cc3-nt-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-nt-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-nt-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-nt-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-nt-when-card:hover {
    background: #1c1c1c;
}

.cc3-nt-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-nt-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-nt-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-nt-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-nt-service-card:hover {
    background: #1f1f1f;
}

.cc3-nt-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-nt-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-nt-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-nt-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
    margin-bottom: 24px;
}

.cc3-nt-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-nt-case-grid--reverse .cc3-nt-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-nt-case-grid--reverse .cc3-nt-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-nt-case-media {
    position: sticky;
    top: 100px;
}

.cc3-nt-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-nt-case-thumb--1 { background: linear-gradient(135deg, #1A0A1F, #9B27AF); }
.cc3-nt-case-thumb--2 { background: linear-gradient(135deg, #0A1F1A, #27AE60); }

.cc3-nt-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-nt-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-nt-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-nt-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-nt-case-block {
    margin-bottom: 20px;
}

.cc3-nt-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-nt-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-nt-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-nt-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-nt-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-nt-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-nt-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-nt-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-nt-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-nt-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-nt-why-card:hover {
    background: #1c1c1c;
}

.cc3-nt-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-nt-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-nt-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-nt-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-nt-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-nt-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-nt-process-body {
    flex: 1;
}

.cc3-nt-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-nt-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-nt-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-nt-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-nt-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-nt-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-nt-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-nt-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-nt-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-nt-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-nt-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-nt-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-nt-faq-item--open .cc3-nt-faq-icon {
    transform: rotate(45deg);
}

.cc3-nt-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-nt-faq-item--open .cc3-nt-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-nt-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-nt-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-nt-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-nt-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-nt-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-nt-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-nt-cover-grid,
    .cc3-nt-when-grid,
    .cc3-nt-services-grid,
    .cc3-nt-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-nt-case-grid,
    .cc3-nt-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-nt-case-grid--reverse .cc3-nt-case-media,
    .cc3-nt-case-grid--reverse .cc3-nt-case-content {
        grid-column: 1;
    }

    .cc3-nt-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-nt-faq-grid,
    .cc3-nt-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-nt-faq-left,
    .cc3-nt-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-nt-hero {
        padding: 56px 20px 40px;
    }

    .cc3-nt-cover-grid,
    .cc3-nt-when-grid,
    .cc3-nt-services-grid,
    .cc3-nt-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-nt-stats-row {
        max-width: 100%;
    }

    .cc3-nt-case-grid {
        padding: 22px;
    }

    .cc3-nt-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-nt-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-nt-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-nt-cover-card,
    .cc3-nt-when-card,
    .cc3-nt-service-card,
    .cc3-nt-why-card,
    .cc3-nt-faq-icon {
        transition: none;
    }
}

.cc3-jv-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-jv-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-jv-h1-solid {
    color: #f5f4f0;
}

.cc3-jv-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-jv-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-jv-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-jv-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-jv-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-jv-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-jv-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-jv-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-jv-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-jv-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-jv-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-jv-cover-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-jv-cover-card:hover {
    background: #1c1c1c;
}

.cc3-jv-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-jv-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-jv-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-jv-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-jv-when-card:hover {
    background: #1c1c1c;
}

.cc3-jv-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-jv-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-jv-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-jv-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-jv-service-card:hover {
    background: #1f1f1f;
}

.cc3-jv-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-jv-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-jv-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-jv-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
    margin-bottom: 24px;
}

.cc3-jv-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-jv-case-grid--reverse .cc3-jv-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-jv-case-grid--reverse .cc3-jv-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-jv-case-media {
    position: sticky;
    top: 100px;
}

.cc3-jv-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-jv-case-thumb--1 { background: linear-gradient(135deg, #2D1A0A, #E67E22); }
.cc3-jv-case-thumb--2 { background: linear-gradient(135deg, #0A1A2D, #2980B9); }

.cc3-jv-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-jv-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-jv-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-jv-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-jv-case-block {
    margin-bottom: 20px;
}

.cc3-jv-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-jv-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-jv-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-jv-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-jv-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-jv-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-jv-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-jv-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-jv-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-jv-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-jv-why-card:hover {
    background: #1c1c1c;
}

.cc3-jv-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-jv-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-jv-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-jv-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-jv-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-jv-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-jv-process-body {
    flex: 1;
}

.cc3-jv-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-jv-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-jv-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-jv-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-jv-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-jv-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-jv-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-jv-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-jv-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-jv-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-jv-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-jv-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-jv-faq-item--open .cc3-jv-faq-icon {
    transform: rotate(45deg);
}

.cc3-jv-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-jv-faq-item--open .cc3-jv-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-jv-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-jv-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-jv-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-jv-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-jv-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-jv-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-jv-cover-grid,
    .cc3-jv-when-grid,
    .cc3-jv-services-grid,
    .cc3-jv-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-jv-case-grid,
    .cc3-jv-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-jv-case-grid--reverse .cc3-jv-case-media,
    .cc3-jv-case-grid--reverse .cc3-jv-case-content {
        grid-column: 1;
    }

    .cc3-jv-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-jv-faq-grid,
    .cc3-jv-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-jv-faq-left,
    .cc3-jv-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-jv-hero {
        padding: 56px 20px 40px;
    }

    .cc3-jv-cover-grid,
    .cc3-jv-when-grid,
    .cc3-jv-services-grid,
    .cc3-jv-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-jv-stats-row {
        max-width: 100%;
    }

    .cc3-jv-case-grid {
        padding: 22px;
    }

    .cc3-jv-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-jv-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-jv-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-jv-cover-card,
    .cc3-jv-when-card,
    .cc3-jv-service-card,
    .cc3-jv-why-card,
    .cc3-jv-faq-icon {
        transition: none;
    }
}

.cc3-ph-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ph-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-ph-h1-solid {
    color: #f5f4f0;
}

.cc3-ph-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-ph-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-ph-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-ph-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-ph-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-ph-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-ph-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-ph-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-ph-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-ph-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-ph-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-ph-cover-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ph-cover-card:hover {
    background: #1c1c1c;
}

.cc3-ph-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ph-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-ph-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-ph-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-ph-when-card:hover {
    background: #1c1c1c;
}

.cc3-ph-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-ph-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-ph-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ph-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ph-service-card:hover {
    background: #1f1f1f;
}

.cc3-ph-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-ph-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ph-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-ph-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
    margin-bottom: 24px;
}

.cc3-ph-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-ph-case-grid--reverse .cc3-ph-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-ph-case-grid--reverse .cc3-ph-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-ph-case-media {
    position: sticky;
    top: 100px;
}

.cc3-ph-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-ph-case-thumb--1 { background: linear-gradient(135deg, #0A1A2D, #3498DB); }
.cc3-ph-case-thumb--2 { background: linear-gradient(135deg, #1A0A2D, #8E44AD); }

.cc3-ph-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-ph-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-ph-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-ph-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-ph-case-block {
    margin-bottom: 20px;
}

.cc3-ph-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-ph-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-ph-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ph-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-ph-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-ph-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-ph-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-ph-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-ph-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ph-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ph-why-card:hover {
    background: #1c1c1c;
}

.cc3-ph-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ph-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-ph-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-ph-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ph-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ph-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-ph-process-body {
    flex: 1;
}

.cc3-ph-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-ph-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-ph-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-ph-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-ph-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-ph-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-ph-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-ph-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ph-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ph-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-ph-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-ph-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-ph-faq-item--open .cc3-ph-faq-icon {
    transform: rotate(45deg);
}

.cc3-ph-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-ph-faq-item--open .cc3-ph-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-ph-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-ph-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-ph-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-ph-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-ph-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-ph-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-ph-cover-grid,
    .cc3-ph-when-grid,
    .cc3-ph-services-grid,
    .cc3-ph-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-ph-case-grid,
    .cc3-ph-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-ph-case-grid--reverse .cc3-ph-case-media,
    .cc3-ph-case-grid--reverse .cc3-ph-case-content {
        grid-column: 1;
    }

    .cc3-ph-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-ph-faq-grid,
    .cc3-ph-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-ph-faq-left,
    .cc3-ph-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-ph-hero {
        padding: 56px 20px 40px;
    }

    .cc3-ph-cover-grid,
    .cc3-ph-when-grid,
    .cc3-ph-services-grid,
    .cc3-ph-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-ph-stats-row {
        max-width: 100%;
    }

    .cc3-ph-case-grid {
        padding: 22px;
    }

    .cc3-ph-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-ph-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-ph-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-ph-cover-card,
    .cc3-ph-when-card,
    .cc3-ph-service-card,
    .cc3-ph-why-card,
    .cc3-ph-faq-icon {
        transition: none;
    }
}


.cc3-py-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-py-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-py-h1-solid {
    color: #f5f4f0;
}

.cc3-py-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-py-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-py-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-py-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-py-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-py-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-py-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-py-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-py-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-py-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-py-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-py-cover-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-py-cover-card:hover {
    background: #1c1c1c;
}

.cc3-py-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-py-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-py-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-py-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-py-when-card:hover {
    background: #1c1c1c;
}

.cc3-py-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-py-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-py-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-py-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-py-service-card:hover {
    background: #1f1f1f;
}

.cc3-py-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-py-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-py-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-py-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
    margin-bottom: 24px;
}

.cc3-py-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-py-case-grid--reverse .cc3-py-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-py-case-grid--reverse .cc3-py-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-py-case-media {
    position: sticky;
    top: 100px;
}

.cc3-py-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-py-case-thumb--1 { background: linear-gradient(135deg, #1A0A2D, #9B59B6); }
.cc3-py-case-thumb--2 { background: linear-gradient(135deg, #2D0A1A, #C0392B); }

.cc3-py-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-py-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-py-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-py-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-py-case-block {
    margin-bottom: 20px;
}

.cc3-py-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-py-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-py-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-py-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-py-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-py-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-py-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-py-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-py-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-py-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-py-why-card:hover {
    background: #1c1c1c;
}

.cc3-py-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-py-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-py-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-py-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-py-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-py-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-py-process-body {
    flex: 1;
}

.cc3-py-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-py-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-py-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-py-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-py-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-py-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-py-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-py-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-py-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-py-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-py-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-py-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-py-faq-item--open .cc3-py-faq-icon {
    transform: rotate(45deg);
}

.cc3-py-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-py-faq-item--open .cc3-py-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-py-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-py-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-py-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-py-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-py-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-py-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-py-cover-grid,
    .cc3-py-when-grid,
    .cc3-py-services-grid,
    .cc3-py-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-py-case-grid,
    .cc3-py-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-py-case-grid--reverse .cc3-py-case-media,
    .cc3-py-case-grid--reverse .cc3-py-case-content {
        grid-column: 1;
    }

    .cc3-py-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-py-faq-grid,
    .cc3-py-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-py-faq-left,
    .cc3-py-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-py-hero {
        padding: 56px 20px 40px;
    }

    .cc3-py-cover-grid,
    .cc3-py-when-grid,
    .cc3-py-services-grid,
    .cc3-py-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-py-stats-row {
        max-width: 100%;
    }

    .cc3-py-case-grid {
        padding: 22px;
    }

    .cc3-py-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-py-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-py-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-py-cover-card,
    .cc3-py-when-card,
    .cc3-py-service-card,
    .cc3-py-why-card,
    .cc3-py-faq-icon {
        transition: none;
    }
}


.cc3-wp-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wp-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-wp-h1-solid {
    color: #f5f4f0;
}

.cc3-wp-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-wp-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-wp-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-wp-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-wp-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-wp-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-wp-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-wp-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-wp-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-wp-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-wp-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-wp-cover-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-wp-cover-card:hover {
    background: #1c1c1c;
}

.cc3-wp-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-wp-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-wp-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-wp-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-wp-when-card:hover {
    background: #1c1c1c;
}

.cc3-wp-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-wp-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-wp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wp-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-wp-service-card:hover {
    background: #1f1f1f;
}

.cc3-wp-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-wp-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-wp-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-wp-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
    margin-bottom: 24px;
}

.cc3-wp-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-wp-case-grid--reverse .cc3-wp-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-wp-case-grid--reverse .cc3-wp-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-wp-case-media {
    position: sticky;
    top: 100px;
}

.cc3-wp-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-wp-case-thumb--1 { background: linear-gradient(135deg, #0A1A2D, #21759B); }
.cc3-wp-case-thumb--2 { background: linear-gradient(135deg, #1A2D0A, #0073AA); }

.cc3-wp-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-wp-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-wp-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-wp-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-wp-case-block {
    margin-bottom: 20px;
}

.cc3-wp-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-wp-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-wp-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wp-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-wp-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-wp-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-wp-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-wp-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-wp-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wp-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-wp-why-card:hover {
    background: #1c1c1c;
}

.cc3-wp-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-wp-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-wp-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-wp-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wp-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wp-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-wp-process-body {
    flex: 1;
}

.cc3-wp-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-wp-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-wp-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-wp-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-wp-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-wp-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-wp-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-wp-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wp-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wp-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-wp-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-wp-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-wp-faq-item--open .cc3-wp-faq-icon {
    transform: rotate(45deg);
}

.cc3-wp-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-wp-faq-item--open .cc3-wp-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-wp-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-wp-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-wp-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-wp-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-wp-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-wp-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-wp-cover-grid,
    .cc3-wp-when-grid,
    .cc3-wp-services-grid,
    .cc3-wp-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-wp-case-grid,
    .cc3-wp-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-wp-case-grid--reverse .cc3-wp-case-media,
    .cc3-wp-case-grid--reverse .cc3-wp-case-content {
        grid-column: 1;
    }

    .cc3-wp-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-wp-faq-grid,
    .cc3-wp-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-wp-faq-left,
    .cc3-wp-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-wp-hero {
        padding: 56px 20px 40px;
    }

    .cc3-wp-cover-grid,
    .cc3-wp-when-grid,
    .cc3-wp-services-grid,
    .cc3-wp-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-wp-stats-row {
        max-width: 100%;
    }

    .cc3-wp-case-grid {
        padding: 22px;
    }

    .cc3-wp-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-wp-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-wp-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-wp-cover-card,
    .cc3-wp-when-card,
    .cc3-wp-service-card,
    .cc3-wp-why-card,
    .cc3-wp-faq-icon {
        transition: none;
    }
}




.cc3-rn-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid var(--border);
}

.cc3-rn-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--off-white);
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-rn-h1-solid {
    color: var(--off-white);
}

.cc3-rn-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-rn-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-rn-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.cc3-rn-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--off-white);
    line-height: 1;
}

.cc3-rn-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-rn-trust-bar {
    background: var(--panel);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.cc3-rn-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-rn-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-rn-trust-divider {
    width: 1px;
    height: 14px;
    background: var(--border);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-rn-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-rn-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 24px;
}

.cc3-rn-cover-card {
    background: var(--black);
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-rn-cover-card:hover {
    background: var(--panel);
}

.cc3-rn-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-rn-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-rn-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 24px;
}

.cc3-rn-when-card {
    background: var(--black);
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-rn-when-card:hover {
    background: var(--panel);
}

.cc3-rn-when-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-rn-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-rn-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.cc3-rn-service-card {
    background: var(--panel);
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-rn-service-card:hover {
    background: #1f1f1f;
}

.cc3-rn-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-rn-service-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-rn-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-rn-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    background: var(--panel2);
    margin-bottom: 24px;
}

.cc3-rn-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-rn-case-grid--reverse .cc3-rn-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-rn-case-grid--reverse .cc3-rn-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-rn-case-media {
    position: sticky;
    top: 100px;
}

.cc3-rn-case-thumb {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-rn-case-thumb--1 { background: linear-gradient(135deg, #0A1A2D, #3498DB); }
.cc3-rn-case-thumb--2 { background: linear-gradient(135deg, #1A0A2D, #9B59B6); }

.cc3-rn-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-rn-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-rn-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-rn-case-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-rn-case-block {
    margin-bottom: 20px;
}

.cc3-rn-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-rn-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-rn-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.cc3-rn-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-rn-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--off-white);
}

.cc3-rn-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-rn-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--off-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-rn-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-rn-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.cc3-rn-why-card {
    background: var(--black);
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-rn-why-card:hover {
    background: var(--panel);
}

.cc3-rn-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-rn-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-rn-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-rn-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.cc3-rn-process-step:first-child {
    border-top: 1px solid var(--border);
}

.cc3-rn-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-rn-process-body {
    flex: 1;
}

.cc3-rn-process-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-rn-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-rn-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-rn-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-rn-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-rn-text-link {
    color: var(--off-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-rn-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-rn-faq-item {
    border-bottom: 1px solid var(--border);
}

.cc3-rn-faq-item:first-child {
    border-top: 1px solid var(--border);
}

.cc3-rn-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-rn-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: var(--off-white);
    font-family: var(--font-body);
}

.cc3-rn-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-rn-faq-item--open .cc3-rn-faq-icon {
    transform: rotate(45deg);
}

.cc3-rn-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-rn-faq-item--open .cc3-rn-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-rn-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-rn-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-rn-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-rn-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: var(--panel2);
    border: 1px solid var(--border);
    color: var(--off-white);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: var(--radius);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-rn-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-rn-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-rn-cover-grid,
    .cc3-rn-when-grid,
    .cc3-rn-services-grid,
    .cc3-rn-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-rn-case-grid,
    .cc3-rn-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-rn-case-grid--reverse .cc3-rn-case-media,
    .cc3-rn-case-grid--reverse .cc3-rn-case-content {
        grid-column: 1;
    }

    .cc3-rn-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-rn-faq-grid,
    .cc3-rn-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-rn-faq-left,
    .cc3-rn-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-rn-hero {
        padding: 56px 20px 40px;
    }

    .cc3-rn-cover-grid,
    .cc3-rn-when-grid,
    .cc3-rn-services-grid,
    .cc3-rn-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-rn-stats-row {
        max-width: 100%;
    }

    .cc3-rn-case-grid {
        padding: 22px;
    }

    .cc3-rn-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-rn-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-rn-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-rn-cover-card,
    .cc3-rn-when-card,
    .cc3-rn-service-card,
    .cc3-rn-why-card,
    .cc3-rn-faq-icon {
        transition: none;
    }
}



.cc3-ma-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ma-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-ma-h1-solid {
    color: #f5f4f0;
}

.cc3-ma-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-ma-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-ma-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-ma-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-ma-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-ma-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-ma-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-ma-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-ma-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-ma-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-ma-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-ma-cover-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ma-cover-card:hover {
    background: #1c1c1c;
}

.cc3-ma-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ma-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-ma-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-ma-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-ma-when-card:hover {
    background: #1c1c1c;
}

.cc3-ma-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-ma-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-ma-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ma-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ma-service-card:hover {
    background: #1f1f1f;
}

.cc3-ma-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-ma-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ma-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-ma-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
    margin-bottom: 24px;
}

.cc3-ma-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-ma-case-grid--reverse .cc3-ma-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-ma-case-grid--reverse .cc3-ma-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-ma-case-media {
    position: sticky;
    top: 100px;
}

.cc3-ma-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-ma-case-thumb--1 { background: linear-gradient(135deg, #0A1A2D, #E74C3C); }
.cc3-ma-case-thumb--2 { background: linear-gradient(135deg, #1A0A2D, #C0392B); }

.cc3-ma-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-ma-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-ma-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-ma-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-ma-case-block {
    margin-bottom: 20px;
}

.cc3-ma-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-ma-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-ma-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ma-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-ma-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-ma-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-ma-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-ma-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-ma-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ma-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ma-why-card:hover {
    background: #1c1c1c;
}

.cc3-ma-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ma-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-ma-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-ma-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ma-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ma-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-ma-process-body {
    flex: 1;
}

.cc3-ma-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-ma-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-ma-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-ma-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-ma-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-ma-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-ma-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-ma-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ma-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ma-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-ma-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-ma-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-ma-faq-item--open .cc3-ma-faq-icon {
    transform: rotate(45deg);
}

.cc3-ma-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-ma-faq-item--open .cc3-ma-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-ma-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-ma-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-ma-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-ma-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-ma-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-ma-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-ma-cover-grid,
    .cc3-ma-when-grid,
    .cc3-ma-services-grid,
    .cc3-ma-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-ma-case-grid,
    .cc3-ma-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-ma-case-grid--reverse .cc3-ma-case-media,
    .cc3-ma-case-grid--reverse .cc3-ma-case-content {
        grid-column: 1;
    }

    .cc3-ma-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-ma-faq-grid,
    .cc3-ma-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-ma-faq-left,
    .cc3-ma-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-ma-hero {
        padding: 56px 20px 40px;
    }

    .cc3-ma-cover-grid,
    .cc3-ma-when-grid,
    .cc3-ma-services-grid,
    .cc3-ma-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-ma-stats-row {
        max-width: 100%;
    }

    .cc3-ma-case-grid {
        padding: 22px;
    }

    .cc3-ma-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-ma-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-ma-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-ma-cover-card,
    .cc3-ma-when-card,
    .cc3-ma-service-card,
    .cc3-ma-why-card,
    .cc3-ma-faq-icon {
        transition: none;
    }
}

.cc3-wc-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wc-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-wc-h1-solid {
    color: #f5f4f0;
}

.cc3-wc-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-wc-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-wc-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-wc-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-wc-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-wc-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-wc-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-wc-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-wc-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-wc-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-wc-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-wc-cover-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-wc-cover-card:hover {
    background: #1c1c1c;
}

.cc3-wc-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-wc-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-wc-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-wc-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-wc-when-card:hover {
    background: #1c1c1c;
}

.cc3-wc-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-wc-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-wc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wc-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-wc-service-card:hover {
    background: #1f1f1f;
}

.cc3-wc-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-wc-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-wc-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-wc-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
    margin-bottom: 24px;
}

.cc3-wc-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-wc-case-grid--reverse .cc3-wc-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-wc-case-grid--reverse .cc3-wc-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-wc-case-media {
    position: sticky;
    top: 100px;
}

.cc3-wc-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-wc-case-thumb--1 { background: linear-gradient(135deg, #1A0A2D, #96588A); }
.cc3-wc-case-thumb--2 { background: linear-gradient(135deg, #0A1A2D, #7D3C98); }

.cc3-wc-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-wc-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-wc-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-wc-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-wc-case-block {
    margin-bottom: 20px;
}

.cc3-wc-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-wc-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-wc-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wc-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-wc-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-wc-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-wc-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-wc-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-wc-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wc-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-wc-why-card:hover {
    background: #1c1c1c;
}

.cc3-wc-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-wc-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-wc-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-wc-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wc-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wc-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-wc-process-body {
    flex: 1;
}

.cc3-wc-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-wc-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-wc-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-wc-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-wc-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-wc-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-wc-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-wc-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wc-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wc-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-wc-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-wc-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-wc-faq-item--open .cc3-wc-faq-icon {
    transform: rotate(45deg);
}

.cc3-wc-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-wc-faq-item--open .cc3-wc-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-wc-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-wc-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-wc-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-wc-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-wc-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-wc-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-wc-cover-grid,
    .cc3-wc-when-grid,
    .cc3-wc-services-grid,
    .cc3-wc-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-wc-case-grid,
    .cc3-wc-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-wc-case-grid--reverse .cc3-wc-case-media,
    .cc3-wc-case-grid--reverse .cc3-wc-case-content {
        grid-column: 1;
    }

    .cc3-wc-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-wc-faq-grid,
    .cc3-wc-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-wc-faq-left,
    .cc3-wc-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-wc-hero {
        padding: 56px 20px 40px;
    }

    .cc3-wc-cover-grid,
    .cc3-wc-when-grid,
    .cc3-wc-services-grid,
    .cc3-wc-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-wc-stats-row {
        max-width: 100%;
    }

    .cc3-wc-case-grid {
        padding: 22px;
    }

    .cc3-wc-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-wc-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-wc-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-wc-cover-card,
    .cc3-wc-when-card,
    .cc3-wc-service-card,
    .cc3-wc-why-card,
    .cc3-wc-faq-icon {
        transition: none;
    }
}


.cc3-sw-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-sw-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-sw-h1-solid {
    color: #f5f4f0;
}

.cc3-sw-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-sw-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-sw-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-sw-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-sw-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-sw-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-sw-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-sw-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-sw-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-sw-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-sw-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-sw-cover-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-sw-cover-card:hover {
    background: #1c1c1c;
}

.cc3-sw-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-sw-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-sw-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-sw-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-sw-when-card:hover {
    background: #1c1c1c;
}

.cc3-sw-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-sw-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-sw-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-sw-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-sw-service-card:hover {
    background: #1f1f1f;
}

.cc3-sw-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-sw-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-sw-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-sw-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
    margin-bottom: 24px;
}

.cc3-sw-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-sw-case-grid--reverse .cc3-sw-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-sw-case-grid--reverse .cc3-sw-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-sw-case-media {
    position: sticky;
    top: 100px;
}

.cc3-sw-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-sw-case-thumb--1 { background: linear-gradient(135deg, #1A0A2D, #FF9500); }
.cc3-sw-case-thumb--2 { background: linear-gradient(135deg, #0A2D1A, #34C759); }

.cc3-sw-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-sw-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-sw-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-sw-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-sw-case-block {
    margin-bottom: 20px;
}

.cc3-sw-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-sw-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-sw-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-sw-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-sw-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-sw-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-sw-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-sw-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-sw-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-sw-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-sw-why-card:hover {
    background: #1c1c1c;
}

.cc3-sw-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-sw-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-sw-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-sw-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-sw-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-sw-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-sw-process-body {
    flex: 1;
}

.cc3-sw-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-sw-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-sw-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-sw-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-sw-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-sw-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-sw-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-sw-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-sw-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-sw-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-sw-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-sw-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-sw-faq-item--open .cc3-sw-faq-icon {
    transform: rotate(45deg);
}

.cc3-sw-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-sw-faq-item--open .cc3-sw-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-sw-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-sw-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-sw-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-sw-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-sw-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-sw-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-sw-cover-grid,
    .cc3-sw-when-grid,
    .cc3-sw-services-grid,
    .cc3-sw-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-sw-case-grid,
    .cc3-sw-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-sw-case-grid--reverse .cc3-sw-case-media,
    .cc3-sw-case-grid--reverse .cc3-sw-case-content {
        grid-column: 1;
    }

    .cc3-sw-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-sw-faq-grid,
    .cc3-sw-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-sw-faq-left,
    .cc3-sw-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-sw-hero {
        padding: 56px 20px 40px;
    }

    .cc3-sw-cover-grid,
    .cc3-sw-when-grid,
    .cc3-sw-services-grid,
    .cc3-sw-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-sw-stats-row {
        max-width: 100%;
    }

    .cc3-sw-case-grid {
        padding: 22px;
    }

    .cc3-sw-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-sw-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-sw-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-sw-cover-card,
    .cc3-sw-when-card,
    .cc3-sw-service-card,
    .cc3-sw-why-card,
    .cc3-sw-faq-icon {
        transition: none;
    }
}


.cc3-ip-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ip-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-ip-h1-solid {
    color: #f5f4f0;
}

.cc3-ip-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-ip-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-ip-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-ip-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-ip-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-ip-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-ip-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-ip-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-ip-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-ip-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-ip-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-ip-cover-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ip-cover-card:hover {
    background: #1c1c1c;
}

.cc3-ip-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ip-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-ip-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-ip-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-ip-when-card:hover {
    background: #1c1c1c;
}

.cc3-ip-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-ip-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-ip-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ip-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ip-service-card:hover {
    background: #1f1f1f;
}

.cc3-ip-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-ip-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ip-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-ip-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
    margin-bottom: 24px;
}

.cc3-ip-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-ip-case-grid--reverse .cc3-ip-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-ip-case-grid--reverse .cc3-ip-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-ip-case-media {
    position: sticky;
    top: 100px;
}

.cc3-ip-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-ip-case-thumb--1 { background: linear-gradient(135deg, #0A2D1A, #34C759); }
.cc3-ip-case-thumb--2 { background: linear-gradient(135deg, #1A0A2D, #007AFF); }

.cc3-ip-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-ip-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-ip-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-ip-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-ip-case-block {
    margin-bottom: 20px;
}

.cc3-ip-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-ip-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-ip-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ip-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-ip-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-ip-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-ip-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-ip-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-ip-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ip-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ip-why-card:hover {
    background: #1c1c1c;
}

.cc3-ip-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ip-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-ip-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-ip-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ip-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ip-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-ip-process-body {
    flex: 1;
}

.cc3-ip-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-ip-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-ip-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-ip-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-ip-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-ip-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-ip-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-ip-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ip-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ip-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-ip-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-ip-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-ip-faq-item--open .cc3-ip-faq-icon {
    transform: rotate(45deg);
}

.cc3-ip-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-ip-faq-item--open .cc3-ip-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-ip-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-ip-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-ip-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-ip-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-ip-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-ip-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-ip-cover-grid,
    .cc3-ip-when-grid,
    .cc3-ip-services-grid,
    .cc3-ip-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-ip-case-grid,
    .cc3-ip-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-ip-case-grid--reverse .cc3-ip-case-media,
    .cc3-ip-case-grid--reverse .cc3-ip-case-content {
        grid-column: 1;
    }

    .cc3-ip-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-ip-faq-grid,
    .cc3-ip-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-ip-faq-left,
    .cc3-ip-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-ip-hero {
        padding: 56px 20px 40px;
    }

    .cc3-ip-cover-grid,
    .cc3-ip-when-grid,
    .cc3-ip-services-grid,
    .cc3-ip-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-ip-stats-row {
        max-width: 100%;
    }

    .cc3-ip-case-grid {
        padding: 22px;
    }

    .cc3-ip-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-ip-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-ip-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-ip-cover-card,
    .cc3-ip-when-card,
    .cc3-ip-service-card,
    .cc3-ip-why-card,
    .cc3-ip-faq-icon {
        transition: none;
    }
}

.cc3-kt-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-kt-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-kt-h1-solid {
    color: #f5f4f0;
}

.cc3-kt-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-kt-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-kt-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-kt-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-kt-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-kt-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-kt-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-kt-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-kt-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-kt-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-kt-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-kt-cover-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-kt-cover-card:hover {
    background: #1c1c1c;
}

.cc3-kt-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-kt-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-kt-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-kt-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-kt-when-card:hover {
    background: #1c1c1c;
}

.cc3-kt-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-kt-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-kt-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-kt-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-kt-service-card:hover {
    background: #1f1f1f;
}

.cc3-kt-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-kt-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-kt-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-kt-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
    margin-bottom: 24px;
}

.cc3-kt-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-kt-case-grid--reverse .cc3-kt-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-kt-case-grid--reverse .cc3-kt-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-kt-case-media {
    position: sticky;
    top: 100px;
}

.cc3-kt-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-kt-case-thumb--1 { background: linear-gradient(135deg, #1A0A2D, #7F39FB); }
.cc3-kt-case-thumb--2 { background: linear-gradient(135deg, #0A1A2D, #5B21B6); }

.cc3-kt-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-kt-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-kt-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-kt-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-kt-case-block {
    margin-bottom: 20px;
}

.cc3-kt-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-kt-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-kt-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-kt-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-kt-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-kt-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-kt-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-kt-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-kt-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-kt-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-kt-why-card:hover {
    background: #1c1c1c;
}

.cc3-kt-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-kt-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-kt-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-kt-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-kt-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-kt-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-kt-process-body {
    flex: 1;
}

.cc3-kt-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-kt-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-kt-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-kt-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-kt-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-kt-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-kt-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-kt-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-kt-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-kt-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-kt-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-kt-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-kt-faq-item--open .cc3-kt-faq-icon {
    transform: rotate(45deg);
}

.cc3-kt-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-kt-faq-item--open .cc3-kt-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-kt-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-kt-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-kt-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-kt-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-kt-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-kt-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-kt-cover-grid,
    .cc3-kt-when-grid,
    .cc3-kt-services-grid,
    .cc3-kt-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-kt-case-grid,
    .cc3-kt-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-kt-case-grid--reverse .cc3-kt-case-media,
    .cc3-kt-case-grid--reverse .cc3-kt-case-content {
        grid-column: 1;
    }

    .cc3-kt-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-kt-faq-grid,
    .cc3-kt-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-kt-faq-left,
    .cc3-kt-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-kt-hero {
        padding: 56px 20px 40px;
    }

    .cc3-kt-cover-grid,
    .cc3-kt-when-grid,
    .cc3-kt-services-grid,
    .cc3-kt-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-kt-stats-row {
        max-width: 100%;
    }

    .cc3-kt-case-grid {
        padding: 22px;
    }

    .cc3-kt-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-kt-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-kt-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-kt-cover-card,
    .cc3-kt-when-card,
    .cc3-kt-service-card,
    .cc3-kt-why-card,
    .cc3-kt-faq-icon {
        transition: none;
    }
}



.cc3-ad-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid var(--border);
}

.cc3-ad-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--off-white);
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-ad-h1-solid {
    color: var(--off-white);
}

.cc3-ad-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-ad-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-ad-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.cc3-ad-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--off-white);
    line-height: 1;
}

.cc3-ad-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-ad-trust-bar {
    background: var(--panel);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.cc3-ad-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-ad-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-ad-trust-divider {
    width: 1px;
    height: 14px;
    background: var(--border);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-ad-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-ad-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 24px;
}

.cc3-ad-cover-card {
    background: var(--black);
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ad-cover-card:hover {
    background: var(--panel);
}

.cc3-ad-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ad-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-ad-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 24px;
}

.cc3-ad-when-card {
    background: var(--black);
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-ad-when-card:hover {
    background: var(--panel);
}

.cc3-ad-when-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-ad-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-ad-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.cc3-ad-service-card {
    background: var(--panel);
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ad-service-card:hover {
    background: #1f1f1f;
}

.cc3-ad-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-ad-service-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ad-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-ad-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    background: var(--panel2);
    margin-bottom: 24px;
}

.cc3-ad-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-ad-case-grid--reverse .cc3-ad-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-ad-case-grid--reverse .cc3-ad-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-ad-case-media {
    position: sticky;
    top: 100px;
}

.cc3-ad-case-thumb {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-ad-case-thumb--1 { background: linear-gradient(135deg, #0A1A2D, #3DDC84); }
.cc3-ad-case-thumb--2 { background: linear-gradient(135deg, #1A2D0A, #6FB04D); }

.cc3-ad-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-ad-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-ad-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-ad-case-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-ad-case-block {
    margin-bottom: 20px;
}

.cc3-ad-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-ad-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-ad-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.cc3-ad-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-ad-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--off-white);
}

.cc3-ad-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-ad-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--off-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-ad-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-ad-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.cc3-ad-why-card {
    background: var(--black);
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ad-why-card:hover {
    background: var(--panel);
}

.cc3-ad-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ad-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-ad-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-ad-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.cc3-ad-process-step:first-child {
    border-top: 1px solid var(--border);
}

.cc3-ad-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-ad-process-body {
    flex: 1;
}

.cc3-ad-process-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-ad-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-ad-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-ad-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-ad-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-ad-text-link {
    color: var(--off-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-ad-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-ad-faq-item {
    border-bottom: 1px solid var(--border);
}

.cc3-ad-faq-item:first-child {
    border-top: 1px solid var(--border);
}

.cc3-ad-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-ad-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: var(--off-white);
    font-family: var(--font-body);
}

.cc3-ad-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-ad-faq-item--open .cc3-ad-faq-icon {
    transform: rotate(45deg);
}

.cc3-ad-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-ad-faq-item--open .cc3-ad-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-ad-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-ad-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-ad-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-ad-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: var(--panel2);
    border: 1px solid var(--border);
    color: var(--off-white);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: var(--radius);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-ad-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-ad-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-ad-cover-grid,
    .cc3-ad-when-grid,
    .cc3-ad-services-grid,
    .cc3-ad-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-ad-case-grid,
    .cc3-ad-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-ad-case-grid--reverse .cc3-ad-case-media,
    .cc3-ad-case-grid--reverse .cc3-ad-case-content {
        grid-column: 1;
    }

    .cc3-ad-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-ad-faq-grid,
    .cc3-ad-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-ad-faq-left,
    .cc3-ad-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-ad-hero {
        padding: 56px 20px 40px;
    }

    .cc3-ad-cover-grid,
    .cc3-ad-when-grid,
    .cc3-ad-services-grid,
    .cc3-ad-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-ad-stats-row {
        max-width: 100%;
    }

    .cc3-ad-case-grid {
        padding: 22px;
    }

    .cc3-ad-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-ad-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-ad-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-ad-cover-card,
    .cc3-ad-when-card,
    .cc3-ad-service-card,
    .cc3-ad-why-card,
    .cc3-ad-faq-icon {
        transition: none;
    }
}


.cc3-aw-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-aw-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-aw-h1-solid {
    color: #f5f4f0;
}

.cc3-aw-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-aw-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-aw-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-aw-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-aw-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-aw-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-aw-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-aw-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-aw-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-aw-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-aw-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-aw-cover-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-aw-cover-card:hover {
    background: #1c1c1c;
}

.cc3-aw-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-aw-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-aw-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-aw-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-aw-when-card:hover {
    background: #1c1c1c;
}

.cc3-aw-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-aw-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-aw-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-aw-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-aw-service-card:hover {
    background: #1f1f1f;
}

.cc3-aw-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-aw-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-aw-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-aw-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
    margin-bottom: 24px;
}

.cc3-aw-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-aw-case-grid--reverse .cc3-aw-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-aw-case-grid--reverse .cc3-aw-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-aw-case-media {
    position: sticky;
    top: 100px;
}

.cc3-aw-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-aw-case-thumb--1 { background: linear-gradient(135deg, #0A2818, #3FA66A); }
.cc3-aw-case-thumb--2 { background: linear-gradient(135deg, #1A2818, #6CB33F); }

.cc3-aw-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-aw-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-aw-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-aw-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-aw-case-block {
    margin-bottom: 20px;
}

.cc3-aw-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-aw-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-aw-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-aw-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-aw-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-aw-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-aw-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-aw-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-aw-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-aw-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-aw-why-card:hover {
    background: #1c1c1c;
}

.cc3-aw-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-aw-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-aw-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-aw-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-aw-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-aw-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-aw-process-body {
    flex: 1;
}

.cc3-aw-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-aw-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-aw-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-aw-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-aw-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-aw-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-aw-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-aw-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-aw-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-aw-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-aw-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-aw-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-aw-faq-item--open .cc3-aw-faq-icon {
    transform: rotate(45deg);
}

.cc3-aw-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-aw-faq-item--open .cc3-aw-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-aw-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-aw-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-aw-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-aw-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-aw-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-aw-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   TRENDS GRID (2026 Changes)
============================================================ */

.cc3-aw-trends-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.cc3-aw-trend-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-aw-trend-card:hover {
    background: #1c1c1c;
}

.cc3-aw-trend-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-aw-trend-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

/* ============================================================
   QUICK WINS GRID (First 30 Days)
============================================================ */

.cc3-aw-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.cc3-aw-quick-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-aw-quick-card:hover {
    background: #1f1f1f;
}

.cc3-aw-quick-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 12px;
}

.cc3-aw-quick-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-aw-quick-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

/* ============================================================
   PRICING GRID
============================================================ */

.cc3-aw-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.cc3-aw-pricing-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-aw-pricing-card:hover {
    background: #1c1c1c;
}

.cc3-aw-pricing-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-aw-pricing-range {
    font-family: var(--font-display);
    font-size: 18px;
    color: rgba(150, 198, 36, 0.9);
    margin-bottom: 12px;
    font-weight: 700;
}

.cc3-aw-pricing-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-aw-trends-grid,
    .cc3-aw-pricing-grid {
        grid-template-columns: 1fr;
    }

    .cc3-aw-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cc3-aw-cover-grid,
    .cc3-aw-when-grid,
    .cc3-aw-services-grid,
    .cc3-aw-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-aw-case-grid,
    .cc3-aw-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-aw-case-grid--reverse .cc3-aw-case-media,
    .cc3-aw-case-grid--reverse .cc3-aw-case-content {
        grid-column: 1;
    }

    .cc3-aw-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-aw-faq-grid,
    .cc3-aw-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-aw-faq-left,
    .cc3-aw-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-aw-trends-grid,
    .cc3-aw-quick-grid,
    .cc3-aw-pricing-grid {
        grid-template-columns: 1fr;
    }
    .cc3-aw-hero {
        padding: 56px 20px 40px;
    }

    .cc3-aw-cover-grid,
    .cc3-aw-when-grid,
    .cc3-aw-services-grid,
    .cc3-aw-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-aw-stats-row {
        max-width: 100%;
    }

    .cc3-aw-case-grid {
        padding: 22px;
    }

    .cc3-aw-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-aw-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-aw-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-aw-cover-card,
    .cc3-aw-when-card,
    .cc3-aw-service-card,
    .cc3-aw-why-card,
    .cc3-aw-faq-icon {
        transition: none;
    }
}


.cc3-wd-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wd-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-wd-h1-solid {
    color: #f5f4f0;
}

.cc3-wd-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-wd-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-wd-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-wd-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-wd-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-wd-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-wd-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-wd-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-wd-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-wd-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-wd-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-wd-cover-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-wd-cover-card:hover {
    background: #1c1c1c;
}

.cc3-wd-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-wd-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-wd-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-wd-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-wd-when-card:hover {
    background: #1c1c1c;
}

.cc3-wd-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-wd-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-wd-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wd-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-wd-service-card:hover {
    background: #1f1f1f;
}

.cc3-wd-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-wd-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-wd-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-wd-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
    margin-bottom: 24px;
}

.cc3-wd-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-wd-case-grid--reverse .cc3-wd-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-wd-case-grid--reverse .cc3-wd-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-wd-case-media {
    position: sticky;
    top: 100px;
}

.cc3-wd-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-wd-case-thumb--1 { background: linear-gradient(135deg, #0A2818, #3FA66A); }
.cc3-wd-case-thumb--2 { background: linear-gradient(135deg, #1A2818, #6CB33F); }

.cc3-wd-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-wd-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-wd-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-wd-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-wd-case-block {
    margin-bottom: 20px;
}

.cc3-wd-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-wd-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-wd-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wd-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-wd-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-wd-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-wd-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-wd-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-wd-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wd-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-wd-why-card:hover {
    background: #1c1c1c;
}

.cc3-wd-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-wd-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-wd-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-wd-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wd-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wd-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-wd-process-body {
    flex: 1;
}

.cc3-wd-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-wd-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-wd-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-wd-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-wd-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-wd-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-wd-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-wd-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wd-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wd-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-wd-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-wd-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-wd-faq-item--open .cc3-wd-faq-icon {
    transform: rotate(45deg);
}

.cc3-wd-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-wd-faq-item--open .cc3-wd-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-wd-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-wd-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-wd-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-wd-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-wd-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-wd-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   STACKS GRID (Tech Stack Cards)
============================================================ */

.cc3-wd-stacks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.cc3-wd-stack-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease, border-color 0.25s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-wd-stack-card:nth-child(3n) {
    border-right: none;
}

.cc3-wd-stack-card:nth-child(n+7) {
    border-bottom: none;
}

.cc3-wd-stack-card:hover {
    background: #1c1c1c;
    border-color: rgba(255, 255, 255, 0.1);
}

.cc3-wd-stack-header {
    margin-bottom: 16px;
}

.cc3-wd-stack-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 6px;
    font-family: var(--font-body);
}

.cc3-wd-stack-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    display: block;
}

.cc3-wd-stack-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 16px;
}

.cc3-wd-stack-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.cc3-wd-stack-link:hover {
    color: #f5f4f0;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-wd-stacks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cc3-wd-cover-grid,
    .cc3-wd-when-grid,
    .cc3-wd-services-grid,
    .cc3-wd-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-wd-case-grid,
    .cc3-wd-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-wd-case-grid--reverse .cc3-wd-case-media,
    .cc3-wd-case-grid--reverse .cc3-wd-case-content {
        grid-column: 1;
    }

    .cc3-wd-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-wd-faq-grid,
    .cc3-wd-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-wd-faq-left,
    .cc3-wd-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-wd-stacks-grid {
        grid-template-columns: 1fr;
    }
    
    .cc3-wd-stack-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
    .cc3-wd-hero {
        padding: 56px 20px 40px;
    }

    .cc3-wd-cover-grid,
    .cc3-wd-when-grid,
    .cc3-wd-services-grid,
    .cc3-wd-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-wd-stats-row {
        max-width: 100%;
    }

    .cc3-wd-case-grid {
        padding: 22px;
    }

    .cc3-wd-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-wd-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-wd-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-wd-cover-card,
    .cc3-wd-when-card,
    .cc3-wd-service-card,
    .cc3-wd-why-card,
    .cc3-wd-faq-icon {
        transition: none;
    }
}


.cc3-ca-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ca-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-ca-h1-solid {
    color: #f5f4f0;
}

.cc3-ca-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-ca-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-ca-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-ca-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-ca-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-ca-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-ca-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-ca-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-ca-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-ca-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-ca-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-ca-cover-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ca-cover-card:hover {
    background: #1c1c1c;
}

.cc3-ca-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ca-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-ca-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-ca-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-ca-when-card:hover {
    background: #1c1c1c;
}

.cc3-ca-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-ca-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-ca-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ca-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ca-service-card:hover {
    background: #1f1f1f;
}

.cc3-ca-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-ca-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ca-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-ca-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
    margin-bottom: 24px;
}

.cc3-ca-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-ca-case-grid--reverse .cc3-ca-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-ca-case-grid--reverse .cc3-ca-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-ca-case-media {
    position: sticky;
    top: 100px;
}

.cc3-ca-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-ca-case-thumb--1 { background: linear-gradient(135deg, #1A0A2D, #E67E22); }
.cc3-ca-case-thumb--2 { background: linear-gradient(135deg, #0A2D1A, #27AE60); }

.cc3-ca-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-ca-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-ca-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-ca-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-ca-case-block {
    margin-bottom: 20px;
}

.cc3-ca-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-ca-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-ca-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ca-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-ca-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-ca-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-ca-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-ca-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-ca-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ca-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ca-why-card:hover {
    background: #1c1c1c;
}

.cc3-ca-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ca-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-ca-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-ca-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ca-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ca-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-ca-process-body {
    flex: 1;
}

.cc3-ca-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-ca-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-ca-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-ca-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-ca-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-ca-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-ca-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-ca-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ca-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ca-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-ca-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-ca-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-ca-faq-item--open .cc3-ca-faq-icon {
    transform: rotate(45deg);
}

.cc3-ca-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-ca-faq-item--open .cc3-ca-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-ca-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-ca-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-ca-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-ca-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-ca-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-ca-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-ca-cover-grid,
    .cc3-ca-when-grid,
    .cc3-ca-services-grid,
    .cc3-ca-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-ca-case-grid,
    .cc3-ca-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-ca-case-grid--reverse .cc3-ca-case-media,
    .cc3-ca-case-grid--reverse .cc3-ca-case-content {
        grid-column: 1;
    }

    .cc3-ca-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-ca-faq-grid,
    .cc3-ca-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-ca-faq-left,
    .cc3-ca-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-ca-hero {
        padding: 56px 20px 40px;
    }

    .cc3-ca-cover-grid,
    .cc3-ca-when-grid,
    .cc3-ca-services-grid,
    .cc3-ca-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-ca-stats-row {
        max-width: 100%;
    }

    .cc3-ca-case-grid {
        padding: 22px;
    }

    .cc3-ca-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-ca-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-ca-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-ca-cover-card,
    .cc3-ca-when-card,
    .cc3-ca-service-card,
    .cc3-ca-why-card,
    .cc3-ca-faq-icon {
        transition: none;
    }
}

/* ============================================================
   CUSTOM APP SECTIONS - ADD MISSING STYLING
============================================================ */

/* Benefits section (What You Actually Get) - FIXED */
.cc3-ca-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.cc3-ca-benefit {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ca-benefits-grid > div:nth-child(3n) {
    border-right: none;
}

.cc3-ca-benefit:hover {
    background: #1c1c1c;
}

.cc3-ca-benefit-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ca-benefit-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

/* Tech section (Full Stack) - FIXED */
.cc3-ca-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.cc3-ca-tech-category {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ca-tech-grid > div:nth-child(3n) {
    border-right: none;
}

.cc3-ca-tech-category:hover {
    background: #1c1c1c;
}

.cc3-ca-tech-cat-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.cc3-ca-tech-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-ca-tech-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    display: block;
}

/* Pricing section - FIXED */
.cc3-ca-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.cc3-ca-pricing-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ca-pricing-grid > div:nth-child(2n) {
    border-right: none;
}

.cc3-ca-pricing-card:hover {
    background: #1c1c1c;
}

.cc3-ca-pricing-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-ca-pricing-price {
    font-family: var(--font-display);
    font-size: 16px;
    color: rgba(150, 198, 36, 0.9);
    font-weight: 700;
    margin-bottom: 16px;
}

.cc3-ca-pricing-features {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cc3-ca-pricing-features li {
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
    .cc3-ca-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-ca-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-ca-pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cc3-ca-benefits-grid,
    .cc3-ca-tech-grid,
    .cc3-ca-pricing-grid {
        grid-template-columns: 1fr;
    }

    .cc3-ca-benefit,
    .cc3-ca-tech-category,
    .cc3-ca-pricing-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
}

.cc3-bc-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-bc-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-bc-h1-solid {
    color: #f5f4f0;
}

.cc3-bc-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-bc-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-bc-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-bc-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-bc-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-bc-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-bc-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-bc-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-bc-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-bc-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   COVER GRID (what "JavaScript development" covers)
============================================================ */

.cc3-bc-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-bc-cover-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-bc-cover-card:hover {
    background: #1c1c1c;
}

.cc3-bc-cover-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-bc-cover-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-bc-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-bc-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-bc-when-card:hover {
    background: #1c1c1c;
}

.cc3-bc-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-bc-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-bc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-bc-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-bc-service-card:hover {
    background: #1f1f1f;
}

.cc3-bc-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-bc-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-bc-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-bc-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
    margin-bottom: 24px;
}

.cc3-bc-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-bc-case-grid--reverse .cc3-bc-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-bc-case-grid--reverse .cc3-bc-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-bc-case-media {
    position: sticky;
    top: 100px;
}

.cc3-bc-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-bc-case-thumb--1 { background: linear-gradient(135deg, #0A2818, #3FA66A); }
.cc3-bc-case-thumb--2 { background: linear-gradient(135deg, #1A2818, #6CB33F); }

.cc3-bc-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-bc-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-bc-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-bc-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-bc-case-block {
    margin-bottom: 20px;
}

.cc3-bc-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-bc-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-bc-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-bc-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-bc-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-bc-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-bc-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-bc-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-bc-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-bc-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-bc-why-card:hover {
    background: #1c1c1c;
}

.cc3-bc-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-bc-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-bc-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-bc-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-bc-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-bc-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-bc-process-body {
    flex: 1;
}

.cc3-bc-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-bc-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-bc-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-bc-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-bc-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-bc-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-bc-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-bc-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-bc-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-bc-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-bc-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-bc-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-bc-faq-item--open .cc3-bc-faq-icon {
    transform: rotate(45deg);
}

.cc3-bc-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-bc-faq-item--open .cc3-bc-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-bc-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-bc-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-bc-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-bc-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-form-input {
    width: 100%;
    background: #141417;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f5f4f0;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1c20;
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-bc-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-bc-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   COMPARISON GRID (When BigCommerce Wins)
============================================================ */

.cc3-bc-comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.cc3-bc-comparison-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-bc-comparison-grid > div:nth-child(3n) {
    border-right: none;
}

.cc3-bc-comparison-card:hover {
    background: #1c1c1c;
}

.cc3-bc-comparison-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.cc3-bc-comparison-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

/* ============================================================
   TRENDS GRID (2026 Commerce Trends)
============================================================ */

.cc3-bc-trends-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.cc3-bc-trend-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-bc-trends-grid > div:nth-child(3n) {
    border-right: none;
}

.cc3-bc-trend-card:hover {
    background: #1f1f1f;
}

.cc3-bc-trend-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-bc-trend-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

/* ============================================================
   SOLUTIONS GRID (What We Build)
============================================================ */

.cc3-bc-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.cc3-bc-solution-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-bc-solutions-grid > div:nth-child(3n) {
    border-right: none;
}

.cc3-bc-solution-card:hover {
    background: #1c1c1c;
}

.cc3-bc-solution-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 12px;
}

.cc3-bc-solution-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-bc-solution-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

/* ============================================================
   PRICING GRID
============================================================ */

.cc3-bc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.cc3-bc-pricing-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-bc-pricing-grid > div:nth-child(2n) {
    border-right: none;
}

.cc3-bc-pricing-card:hover {
    background: #1c1c1c;
}

.cc3-bc-pricing-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-bc-pricing-range {
    font-family: var(--font-display);
    font-size: 18px;
    color: rgba(150, 198, 36, 0.9);
    margin-bottom: 12px;
    font-weight: 700;
}

.cc3-bc-pricing-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-bc-comparison-grid,
    .cc3-bc-trends-grid,
    .cc3-bc-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-bc-pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-bc-comparison-grid,
    .cc3-bc-trends-grid,
    .cc3-bc-solutions-grid,
    .cc3-bc-pricing-grid {
        grid-template-columns: 1fr;
    }

    .cc3-bc-comparison-card,
    .cc3-bc-trend-card,
    .cc3-bc-solution-card,
    .cc3-bc-pricing-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
}

@media (max-width: 1024px) {
    .cc3-bc-cover-grid,
    .cc3-bc-when-grid,
    .cc3-bc-services-grid,
    .cc3-bc-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-bc-case-grid,
    .cc3-bc-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-bc-case-grid--reverse .cc3-bc-case-media,
    .cc3-bc-case-grid--reverse .cc3-bc-case-content {
        grid-column: 1;
    }

    .cc3-bc-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-bc-faq-grid,
    .cc3-bc-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-bc-faq-left,
    .cc3-bc-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-bc-hero {
        padding: 56px 20px 40px;
    }

    .cc3-bc-cover-grid,
    .cc3-bc-when-grid,
    .cc3-bc-services-grid,
    .cc3-bc-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-bc-stats-row {
        max-width: 100%;
    }

    .cc3-bc-case-grid {
        padding: 22px;
    }

    .cc3-bc-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-bc-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-bc-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-bc-cover-card,
    .cc3-bc-when-card,
    .cc3-bc-service-card,
    .cc3-bc-why-card,
    .cc3-bc-faq-icon {
        transition: none;
    }
}


.cc3-ux-hero {
    padding: 100px 40px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ux-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 70px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-ux-h1-solid {
    color: rgba(150, 198, 36, 0.95);
    display: block;
}

.cc3-ux-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 620px;
    margin-bottom: 32px;
}

.cc3-ux-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cc3-ux-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.cc3-ux-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: #f5f4f0;
    line-height: 1;
}

.cc3-ux-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888880;
    margin-top: 6px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-ux-trust-bar {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.cc3-ux-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 40px;
    flex-wrap: wrap;
}

.cc3-ux-trust-item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.cc3-ux-trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SECTION INTRO
============================================================ */

.cc3-ux-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-ux-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.cc3-ux-service-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    border: 1px solid #1a1a1a;
    padding: 32px;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.cc3-ux-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(150, 198, 36, 0.4);
    transition: height 0.3s ease;
}

.cc3-ux-service-card:hover {
    border-color: rgba(150, 198, 36, 0.4);
    background: linear-gradient(135deg, #0f0f0f 0%, #141414 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.cc3-ux-service-card:hover::before {
    height: 4px;
}

.cc3-ux-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 14px;
    font-family: var(--font-body);
}

.cc3-ux-service-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.cc3-ux-service-price {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: rgba(150, 198, 36, 0.95);
    margin-bottom: 6px;
    display: block;
}

.cc3-ux-service-timeline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: block;
}

/* ============================================================
   WHERE-NODE-FITS GRID (4-col)
============================================================ */

.cc3-ux-when-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
}

.cc3-ux-when-card {
    background: #0d0d0d;
    padding: 26px 22px;
    transition: background 0.25s ease;
}

.cc3-ux-when-card:hover {
    background: #1c1c1c;
}

.cc3-ux-when-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.4;
}

.cc3-ux-when-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */

.cc3-ux-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ux-service-card {
    background: #1c1c1c;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ux-service-card:hover {
    background: #1f1f1f;
}

.cc3-ux-service-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 16px;
}

.cc3-ux-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ux-service-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   EMBEDDED CASE STUDY (confirmed component, ported from angular3;
   includes --reverse modifier for alternating media position
   since this page has two consecutive case studies)
============================================================ */

.cc3-ux-case-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 36px;
    background: #141417;
    margin-bottom: 24px;
}

.cc3-ux-case-grid--reverse {
    grid-template-columns: 1fr 360px;
}

.cc3-ux-case-grid--reverse .cc3-ux-case-media {
    grid-column: 2;
    grid-row: 1;
}

.cc3-ux-case-grid--reverse .cc3-ux-case-content {
    grid-column: 1;
    grid-row: 1;
}

.cc3-ux-case-media {
    position: sticky;
    top: 100px;
}

.cc3-ux-case-thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cc3-ux-case-thumb--1 { background: linear-gradient(135deg, #0A2818, #3FA66A); }
.cc3-ux-case-thumb--2 { background: linear-gradient(135deg, #1A2818, #6CB33F); }

.cc3-ux-case-thumb-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    display: block;
}

.cc3-ux-case-initials {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.85);
}

.cc3-ux-case-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 12px;
}

.cc3-ux-case-title {
    font-size: 22px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.cc3-ux-case-block {
    margin-bottom: 20px;
}

.cc3-ux-case-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 8px;
}

.cc3-ux-case-block p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}


.cc3-ux-case-stats {
    display: flex;
    gap: 32px;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ux-case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc3-ux-case-stat-num {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f5f4f0;
}

.cc3-ux-case-stat-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-ux-case-link {
    font-family: var(--font-mono);
    font-size: 13px;
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cc3-ux-projects-more {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   WHY US GRID
============================================================ */

.cc3-ux-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ux-why-card {
    background: #0d0d0d;
    padding: 28px 24px;
    transition: background 0.25s ease;
}

.cc3-ux-why-card:hover {
    background: #1c1c1c;
}

.cc3-ux-why-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-ux-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ============================================================
   PROCESS
============================================================ */

.cc3-ux-process-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.cc3-ux-process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ux-process-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ux-process-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    min-width: 24px;
}

.cc3-ux-process-body {
    flex: 1;
}

.cc3-ux-process-title {
    font-size: 16px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-ux-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 680px;
}

/* ============================================================
   FAQ
============================================================ */

.cc3-ux-faq-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-ux-faq-left {
    position: sticky;
    top: 100px;
}

.cc3-ux-faq-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-ux-text-link {
    color: #f5f4f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cc3-ux-faq-accordion {
    display: flex;
    flex-direction: column;
}

.cc3-ux-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ux-faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-ux-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: none;
    gap: 16px;
}

.cc3-ux-faq-q span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #f5f4f0;
    font-family: var(--font-body);
}

.cc3-ux-faq-icon {
    font-family: var(--font-mono);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.cc3-ux-faq-item--open .cc3-ux-faq-icon {
    transform: rotate(45deg);
}

.cc3-ux-faq-a {
    display: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    padding-bottom: 24px;
    max-width: 640px;
}

.cc3-ux-faq-item--open .cc3-ux-faq-a {
    display: block;
}

/* ============================================================
   QUOTE FORM (incl. shared primitives)
============================================================ */

.cc3-ux-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.cc3-ux-quote-left {
    position: sticky;
    top: 100px;
}

.cc3-ux-quote-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.cc3-ux-quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc3-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc3-form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cc3-form-input {
    width: 100%;
    padding: 14px 15px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    color: #f5f4f0;
    font-size: 14px;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    border-radius: 1px;
    box-sizing: border-box;
}

.cc3-form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.cc3-form-input:hover {
    border-color: #3a3a3a;
    background: #0f0f0f;
}

.cc3-form-input:focus {
    outline: none;
    border-color: rgba(150, 198, 36, 0.6);
    background: #0f0f0f;
    box-shadow: 0 0 0 2px rgba(150, 198, 36, 0.1);
}

.cc3-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 3.5L5 6.5L8 3.5' stroke='%23888880' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: none;
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--font-body);
}

.cc3-ux-form-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 4px;
}

.cc3-ux-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-bottom: 0;
}

/* ============================================================
   DESIGNER CARDS (Hire section)
============================================================ */

.cc3-ux-designer-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.cc3-ux-designer-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    border: 1px solid #1a1a1a;
    padding: 28px;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.cc3-ux-designer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(150, 198, 36, 0.3);
    transition: height 0.3s ease;
}

.cc3-ux-designer-card:hover {
    border-color: rgba(150, 198, 36, 0.4);
    background: linear-gradient(135deg, #0f0f0f 0%, #141414 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.cc3-ux-designer-card:hover::before {
    height: 4px;
    background: rgba(150, 198, 36, 0.6);
}

.cc3-ux-designer-type {
    font-size: 13px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.cc3-ux-designer-rate {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: rgba(150, 198, 36, 0.95);
    margin-bottom: 12px;
    display: block;
}

.cc3-ux-designer-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.cc3-ux-designer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.4);
}

.cc3-ux-designer-list li {
    padding: 4px 0;
    padding-left: 14px;
    position: relative;
}

.cc3-ux-designer-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: rgba(150, 198, 36, 0.5);
    font-weight: 600;
}

.cc3-ux-hire-cta {
    text-align: center;
    margin-top: 48px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(150, 198, 36, 0.03) 0%, rgba(150, 198, 36, 0.01) 100%);
    border: 1px solid rgba(150, 198, 36, 0.15);
    border-radius: 2px;
}

.cc3-ux-hire-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-ux-h1 {
        font-size: clamp(32px, 5vw, 50px);
    }

    .cc3-ux-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-ux-designer-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-ux-why-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-ux-hero {
        padding: 60px 20px 40px;
    }

    .cc3-ux-h1 {
        font-size: clamp(28px, 4vw, 40px);
    }

    .cc3-ux-hero-actions {
        flex-direction: column;
    }

    .cc3-ux-hero-actions a {
        width: 100%;
    }

    .cc3-ux-services-grid,
    .cc3-ux-designer-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cc3-ux-service-card,
    .cc3-ux-designer-card {
        padding: 24px;
    }
}

@media (max-width: 1024px) {
    .cc3-ux-cover-grid,
    .cc3-ux-when-grid,
    .cc3-ux-services-grid,
    .cc3-ux-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-ux-case-grid,
    .cc3-ux-case-grid--reverse {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }

    .cc3-ux-case-grid--reverse .cc3-ux-case-media,
    .cc3-ux-case-grid--reverse .cc3-ux-case-content {
        grid-column: 1;
    }

    .cc3-ux-case-media {
        position: static;
        max-width: 280px;
    }

    .cc3-ux-faq-grid,
    .cc3-ux-quote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cc3-ux-faq-left,
    .cc3-ux-quote-left {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-ux-hero {
        padding: 56px 20px 40px;
    }

    .cc3-ux-cover-grid,
    .cc3-ux-when-grid,
    .cc3-ux-services-grid,
    .cc3-ux-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-ux-stats-row {
        max-width: 100%;
    }

    .cc3-ux-case-grid {
        padding: 22px;
    }

    .cc3-ux-case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cc3-ux-trust-inner {
        gap: 14px;
        padding: 14px 20px;
    }

    .cc3-ux-trust-divider {
        display: none;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-ux-cover-card,
    .cc3-ux-when-card,
    .cc3-ux-service-card,
    .cc3-ux-why-card,
    .cc3-ux-faq-icon {
        transition: none;
    }
}


.cc3-hr-hero {
    padding: 80px 24px 60px;
    text-align: center;
    background: linear-gradient(135deg, #0d0d0d 0%, rgba(20,20,20,0.8) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-hr-h1 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: #f5f4f0;
    line-height: 1.25;
    margin: 20px 0 24px;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.cc3-hr-h1-solid {
    color: rgba(150, 198, 36, 0.95);
    display: block;
}

.cc3-hr-hero-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cc3-hr-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cc3-hr-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cc3-hr-stat {
    text-align: center;
}

.cc3-hr-stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: #f5f4f0;
    display: block;
    margin-bottom: 8px;
}

.cc3-hr-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   TRUST BAR
============================================================ */

.cc3-hr-trust-bar {
    background: #1c1c1c;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    text-align: center;
}

.cc3-hr-trust-inner {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cc3-hr-trust-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.cc3-hr-trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SKILL MATCHER SECTION
============================================================ */

.cc3-hr-matcher-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
    align-items: start;
}

.cc3-hr-matcher-form {
    background: #1c1c1c;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1px;
}

.cc3-hr-form-group {
    margin-bottom: 24px;
}

.cc3-hr-form-group:last-child {
    margin-bottom: 32px;
}

.cc3-hr-form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cc3-hr-form-input {
    width: 100%;
    padding: 14px 15px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    color: #f5f4f0;
    font-size: 14px;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    border-radius: 1px;
    box-sizing: border-box;
}

.cc3-hr-form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.cc3-hr-form-input:hover {
    border-color: #3a3a3a;
    background: #0f0f0f;
}

.cc3-hr-form-input:focus {
    outline: none;
    border-color: rgba(150, 198, 36, 0.6);
    background: #0f0f0f;
    box-shadow: 0 0 0 2px rgba(150, 198, 36, 0.1);
}

.cc3-form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.cc3-hr-matcher-btn {
    width: 100%;
    cursor: pointer;
}

/* Matcher Result */

.cc3-hr-matcher-result {
    background: #0d0d0d;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

.cc3-hr-result-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
}

.cc3-hr-result-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.cc3-hr-result-team {
    margin: 24px 0;
}

.cc3-hr-team-member {
    background: #1c1c1c;
    padding: 16px;
    border-left: 3px solid rgba(150, 198, 36, 0.6);
    margin-bottom: 12px;
    border-radius: 1px;
}

.cc3-hr-member-role {
    font-size: 14px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 4px;
}

.cc3-hr-member-details {
    display: flex;
    gap: 24px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.cc3-hr-result-summary {
    background: rgba(150, 198, 36, 0.05);
    padding: 20px;
    border: 1px solid rgba(150, 198, 36, 0.2);
    margin: 24px 0;
    border-radius: 1px;
}

.cc3-hr-result-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.65);
}

.cc3-hr-result-price {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: rgba(150, 198, 36, 0.95);
}

.cc3-hr-result-cta {
    width: 100%;
    margin-bottom: 12px;
}

.cc3-hr-reset-btn {
    width: 100%;
    padding: 11px 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 1px;
}

.cc3-hr-reset-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   COMPARISON GRID
============================================================ */

.cc3-hr-comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.cc3-hr-comparison-card {
    background: #0d0d0d;
    padding: 24px;
    transition: background 0.25s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-hr-comparison-grid > div:nth-child(3n) {
    border-right: none;
}

.cc3-hr-comparison-card:hover {
    background: #1c1c1c;
}

.cc3-hr-comparison-title {
    font-size: 14px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.cc3-hr-comparison-row {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.cc3-hr-comparison-bad {
    color: rgba(255, 107, 53, 0.7);
}

.cc3-hr-comparison-neutral {
    color: rgba(255, 255, 255, 0.6);
}

.cc3-hr-comparison-good {
    color: rgba(150, 198, 36, 0.9);
    font-weight: 600;
}

/* ============================================================
   PROCESS LIST
============================================================ */

.cc3-hr-process-list {
    margin-top: 40px;
}

.cc3-hr-process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    align-items: start;
}

.cc3-hr-process-step:last-child {
    border-bottom: none;
}

.cc3-hr-process-num {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: rgba(150, 198, 36, 0.4);
}

.cc3-hr-process-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.cc3-hr-process-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

/* ============================================================
   WHY GRID
============================================================ */

.cc3-hr-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.cc3-hr-why-card {
    background: #1c1c1c;
    padding: 28px;
    transition: background 0.25s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-hr-why-grid > div:nth-child(2n) {
    border-right: none;
}

.cc3-hr-why-card:hover {
    background: #1f1f1f;
}

.cc3-hr-why-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-hr-why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

/* ============================================================
   SKILLS GRID
============================================================ */

.cc3-hr-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.cc3-hr-skill-card {
    background: #0d0d0d;
    padding: 24px;
    transition: background 0.25s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-hr-skills-grid > div:nth-child(3n) {
    border-right: none;
}

.cc3-hr-skill-card:hover {
    background: #1c1c1c;
}

.cc3-hr-skill-title {
    font-size: 15px;
    font-weight: 600;
    color: #f5f4f0;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.cc3-hr-skill-list {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 12px;
}

.cc3-hr-skill-rate {
    font-size: 13px;
    font-weight: 600;
    color: rgba(150, 198, 36, 0.9);
}

/* ============================================================
   FAQ ACCORDION
============================================================ */

.cc3-hr-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
    align-items: start;
}

.cc3-hr-faq-accordion {
    width: 100%;
}

.cc3-hr-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-hr-faq-item:last-child {
    border-bottom: none;
}

.cc3-hr-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    color: #f5f4f0;
    font-size: 14px;
}

.cc3-hr-faq-q:hover {
    color: rgba(255, 255, 255, 0.8);
}

.cc3-hr-faq-icon {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.cc3-hr-faq-item--open .cc3-hr-faq-icon {
    transform: rotate(45deg);
}

.cc3-hr-faq-a {
    display: none;
    padding: 0 0 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

.cc3-hr-faq-item--open .cc3-hr-faq-a {
    display: block;
}

.cc3-hr-text-link {
    color: rgba(150, 198, 36, 0.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(150, 198, 36, 0.3);
    transition: all 0.2s ease;
}

.cc3-hr-text-link:hover {
    border-bottom-color: rgba(150, 198, 36, 0.9);
}

/* ============================================================
   QUOTE SECTION
============================================================ */

.cc3-hr-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
    align-items: start;
}

.cc3-hr-quote-form {
    background: #1c1c1c;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1px;
}

.cc3-hr-form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.cc3-hr-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-hr-h1 {
        font-size: 40px;
    }

    .cc3-hr-matcher-container,
    .cc3-hr-faq-grid,
    .cc3-hr-quote-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cc3-hr-comparison-grid,
    .cc3-hr-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc3-hr-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-hr-stats-row {
        gap: 24px;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-hr-hero {
        padding: 60px 16px 40px;
    }

    .cc3-hr-h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .cc3-hr-hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .cc3-hr-hero-actions a {
        width: 100%;
        text-align: center;
    }

    .cc3-hr-stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
        padding-top: 32px;
    }

    .cc3-hr-trust-inner {
        flex-direction: column;
        gap: 12px;
    }

    .cc3-hr-trust-divider {
        display: none;
    }

    .cc3-hr-comparison-grid,
    .cc3-hr-skills-grid,
    .cc3-hr-why-grid {
        grid-template-columns: 1fr;
    }

    .cc3-hr-comparison-card,
    .cc3-hr-skill-card,
    .cc3-hr-why-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .cc3-hr-matcher-form,
    .cc3-hr-matcher-result,
    .cc3-hr-quote-form {
        padding: 24px;
    }

    .cc3-hr-process-step {
        grid-template-columns: 50px 1fr;
        gap: 16px;
        padding: 20px 0;
    }

    .cc3-hr-faq-grid {
        gap: 32px;
    }
}




.ipt-hero {
padding: 100px 40px 60px;
max-width: 1400px;
margin: 0 auto;
}
.ipt-h1 {
font-family: var(--font-display);
font-size: clamp(40px, 6vw, 64px);
line-height: 1.2;
margin-bottom: 24px;
font-weight: 700;
}
.ipt-hero-desc {
font-size: 17px;
color: rgba(255,255,255,0.65);
max-width: 800px;
margin-bottom: 32px;
line-height: 1.8;
}
.ipt-hero-cta {
display: inline-flex;
gap: 16px;
}
.ipt-btn {
padding: 14px 28px;
font-size: 12px;
font-weight: 500;
border: none;
cursor: pointer;
transition: all 0.3s ease;
font-family: var(--font-mono);
letter-spacing: 0.1em;
text-transform: uppercase;
border-radius: 1px;
}
.ipt-btn-primary {
background: #f5f4f0;
color: #0d0d0d;
}
.ipt-btn-primary:hover {
background: rgba(245, 244, 240, 0.9);
transform: translateY(-2px);
}
.ipt-btn-ghost {
background: transparent;
border: 1px solid #f5f4f0;
color: #f5f4f0;
}
.ipt-btn-ghost:hover {
background: rgba(245, 244, 240, 0.05);
border-color: #f5f4f0;
transform: translateY(-2px);
color: #fff;
}

/* ============================================================ STATS */
.ipt-stats-row {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 32px;
margin-top: 60px;
padding-top: 60px;
border-top: 1px solid #2a2a2a;
}
.ipt-stat {
text-align: left;
}
.ipt-stat-num {
font-family: var(--font-display);
font-size: 36px;
font-weight: 700;
color: #f5f4f0;
display: block;
margin-bottom: 8px;
}
.ipt-stat-label {
font-size: 12px;
color: rgba(255,255,255,0.45);
text-transform: uppercase;
letter-spacing: 0.1em;
font-family: var(--font-mono);
}

/* ============================================================ TRUST BAR */
.ipt-trust-bar {
background: rgba(255,255,255,0.01);
border-top: 1px solid #2a2a2a;
border-bottom: 1px solid #2a2a2a;
padding: 32px 0;
margin: 60px 0;
}
.ipt-trust-inner {
max-width: 1400px;
margin: 0 auto;
padding: 0 40px;
display: flex;
align-items: center;
gap: 24px;
flex-wrap: wrap;
font-size: 13px;
color: rgba(255,255,255,0.5);
}

/* ============================================================ SECTION */
.ipt-sec {
max-width: 1400px;
margin: 0 auto;
padding: 80px 40px;
border-bottom: 1px solid #2a2a2a;
}
.ipt-sec:last-child {
border-bottom: none;
}
.ipt-sec-dark {
background: rgba(15, 15, 15, 0.5);
}
.ipt-sec-title {
font-family: var(--font-display);
font-size: clamp(32px, 5vw, 52px);
line-height: 1.3;
margin-bottom: 40px;
font-weight: 700;
color: #f5f4f0;
}
.ipt-sec-intro {
font-size: 16px;
color: rgba(255,255,255,0.65);
max-width: 800px;
margin-bottom: 40px;
line-height: 1.8;
}

/* ============================================================ GRIDS */
.ipt-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
.ipt-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }

.ipt-card {
background: #0d0d0d;
border: 1px solid #2a2a2a;
padding: 32px;
transition: all 0.3s ease;
border-radius: 1px;
}
.ipt-card:hover {
background: rgba(28, 28, 28, 0.8);
border-color: rgba(255,255,255,0.15);
}
.ipt-card-title {
font-size: 16px;
font-weight: 600;
margin-bottom: 12px;
color: #f5f4f0;
}
.ipt-card-desc {
font-size: 13.5px;
color: rgba(255,255,255,0.5);
line-height: 1.6;
}
.ipt-card-metric {
font-family: var(--font-display);
font-size: 24px;
font-weight: 700;
color: #f5f4f0;
margin-bottom: 8px;
}

/* ============================================================ CASE STUDY */
.ipt-case-grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 40px;
align-items: center;
margin-top: 40px;
margin-bottom: 60px;
padding-bottom: 60px;
border-bottom: 1px solid #2a2a2a;
}
.ipt-case-grid:last-child {
border-bottom: none;
}
.ipt-case-content h3 {
font-size: 20px;
margin-bottom: 12px;
color: #f5f4f0;
}
.ipt-case-content p {
color: rgba(255,255,255,0.6);
margin-bottom: 16px;
}
.ipt-case-meta {
display: flex;
gap: 24px;
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid #2a2a2a;
}
.ipt-case-meta-item {
flex: 1;
}
.ipt-case-label {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.1em;
color: rgba(255,255,255,0.35);
margin-bottom: 4px;
font-family: var(--font-mono);
}
.ipt-case-value {
font-size: 18px;
font-weight: 600;
color: #f5f4f0;
}
.ipt-case-visual {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.1);
padding: 40px;
display: flex;
align-items: center;
justify-content: center;
min-height: 300px;
border-radius: 1px;
text-align: center;
font-size: 64px;
}

/* ============================================================ TESTIMONIALS */
.ipt-testimonial {
background: rgba(28, 28, 28, 0.5);
border: 1px solid #2a2a2a;
padding: 32px;
border-radius: 1px;
margin-bottom: 24px;
}
.ipt-testimonial-text {
font-size: 14px;
color: rgba(255,255,255,0.6);
line-height: 1.7;
margin-bottom: 16px;
font-style: italic;
}
.ipt-testimonial-author {
font-weight: 600;
font-size: 14px;
color: #f5f4f0;
}
.ipt-testimonial-title {
font-size: 12px;
color: rgba(255,255,255,0.4);
}

/* ============================================================ PROCESS */
.ipt-process-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 40px;
}
.ipt-process-item {
background: rgba(28, 28, 28, 0.5);
border: 1px solid #2a2a2a;
padding: 32px;
border-radius: 1px;
transition: background 0.3s ease;
}
.ipt-process-item:hover {
background: rgba(28, 28, 28, 0.8);
}
.ipt-process-num {
font-family: var(--font-display);
font-size: 32px;
font-weight: 700;
color: rgba(255,255,255,0.1);
margin-bottom: 12px;
}
.ipt-process-title {
font-size: 16px;
font-weight: 600;
margin-bottom: 12px;
}
.ipt-process-desc {
font-size: 13.5px;
color: rgba(255,255,255,0.5);
line-height: 1.6;
}

/* ============================================================ FAQ */
.ipt-faq-grid {
display: grid;
grid-template-columns: 300px 1fr;
gap: 60px;
margin-top: 40px;
}
.ipt-faq-left { font-size: 14px; color: rgba(255,255,255,0.6); }
.ipt-faq-item {
border-bottom: 1px solid #2a2a2a;
padding: 20px 0;
}
.ipt-faq-item:last-child { border-bottom: none; }
.ipt-faq-q {
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
user-select: none;
}
.ipt-faq-q span:first-child {
font-weight: 600;
font-size: 15px;
}
.ipt-faq-a {
margin-top: 16px;
font-size: 13.5px;
color: rgba(255,255,255,0.5);
line-height: 1.6;
display: none;
}
.ipt-faq-item--open .ipt-faq-a { display: block; }
.ipt-faq-icon {
font-size: 20px;
color: rgba(255,255,255,0.3);
transition: transform 0.3s ease;
}
.ipt-faq-item--open .ipt-faq-icon { transform: rotate(45deg); }

/* ============================================================ CTA */
.ipt-cta-full {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.1);
padding: 60px 40px;
text-align: center;
border-radius: 1px;
margin-top: 40px;
}
.ipt-cta-text {
font-size: 18px;
font-weight: 600;
margin-bottom: 24px;
}

/* ============================================================ FORM */
.ipt-form { 
max-width: 600px; 
margin: 0 auto; 
text-align: center;
}
.ipt-form-row { 
margin-bottom: 32px; 
}
.ipt-form-label {
display: block;
font-size: 12px;
font-weight: 700;
color: #f5f4f0;
margin-bottom: 16px;
font-family: var(--font-mono);
text-transform: uppercase;
letter-spacing: 0.2em;
}
.ipt-form-input {
width: 100%;
padding: 16px;
background: #0d0d0d;
border: none;
border-bottom: 1px solid #2a2a2a;
color: #f5f4f0;
font-size: 15px;
font-family: var(--font-body);
transition: all 0.2s ease;
border-radius: 0;
box-sizing: border-box;
text-align: center;
}
.ipt-form-input::placeholder { 
color: rgba(255,255,255,0.3); 
}
.ipt-form-input:hover { 
border-bottom-color: rgba(255,255,255,0.25);
}
.ipt-form-input:focus { 
outline: none; 
border-bottom-color: rgba(255,255,255,0.4);
}
.ipt-form-note {
font-size: 12px;
color: rgba(255,255,255,0.4);
margin-top: 20px;
}

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
.ipt-stats-row { grid-template-columns: repeat(2, 1fr); }
.ipt-grid-3 { grid-template-columns: repeat(2, 1fr); }
.ipt-case-grid { grid-template-columns: 1fr; }
.ipt-faq-grid { grid-template-columns: 1fr; }
.ipt-process-list { grid-template-columns: repeat(2, 1fr); }
.ipt-hero, .ipt-sec { padding: 60px 30px; }
}
@media (max-width: 768px) {
.ipt-stats-row { grid-template-columns: 1fr; }
.ipt-grid-2, .ipt-grid-3 { grid-template-columns: 1fr; }
.ipt-hero-cta { flex-direction: column; }
.ipt-btn { width: 100%; text-align: center; }
.ipt-process-list { grid-template-columns: 1fr; }
.ipt-hero, .ipt-sec { padding: 40px 20px; }
}

@keyframes slideUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.ipt-reveal {
animation: slideUp 0.6s ease-out forwards;
opacity: 0;
}
div#cc3-apply-modal {
    -webkit-overflow-scrolling: touch;
    outline: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 9998;
    min-height: 100vh;
    min-width: 100vw;
    pointer-events: auto;
}
div#cc3-apply-modal .modal-dialog {
    width: 100%;
    margin: 0;
    height: 100%;
}
div#cc3-apply-modal .modal-content {
    border-radius: 0;
    border: none;
    height: 100%;
    background: #0d0d0d;
}
div#cc3-apply-modal .modal-header {
    padding: 0 45px;
    border-bottom: none;
    display: block !important;
}
div#cc3-apply-modal .close {
    float: right;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    color: #ee4d51;
    text-shadow: 0 1px 0 #fff;
    opacity: 1;
}
div#cc3-apply-modal .navbar-brand {
    padding: 0 !important;
    margin-top: 7px;
    z-index: 2;
    position: relative;
}
div#cc3-apply-modal .modal-body {
    background: transparent;
    padding-bottom: 30px;
    position: relative;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
    float: left;
    top: 70px;
}
div#cc3-apply-modal .form-box {
    width: 100%;
    margin: 0 auto;
    float: left;
}
div#cc3-apply-modal .form_header h1 {
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
}
div#cc3-apply-modal .form_header p {
    padding: 10px 0;
    display: block;
    margin-top: 50px;
    font-size: 16px;
    text-align: center;
}
div#cc3-apply-modal .form-box .form-control {
    width: 100%;
    background-color: transparent;
    color: #fff;
    border: none;
    border-bottom: 1px solid #ffffff;
    box-shadow: none;
    border-radius: 0 !important;
    padding: 6px 0;
    font-size: 16px;
}
div#cc3-apply-modal .form-box .form-group {
    margin-bottom: 30px;
    position: relative;
}
div#cc3-apply-modal .form-box input[type="file"] {
    opacity: 0;
    height: 60px;
    width: 100%;
    z-index: 1;
    position: relative;
}
div#cc3-apply-modal .form-box #custom-button {
    padding: 10px;
    color: #ffffff;
    border: 1px dashed #ffffff;
    border-radius: 0;
    cursor: pointer;
    width: 100%;
    position: absolute;
    top: 0;
    height: 60px;
    background-color: transparent;
}
div#cc3-apply-modal .form-box #custom-text {
    margin-left: 10px;
    color: #aaa;
}
div#cc3-apply-modal .modal_btn {
    outline: 0;
    padding: 12px 30px;
    line-height: 1.4;
    background: #ffffff;
    border-radius: 0px;
    border: 2px solid #ffffff;
    color: #0d0d0d;
    position: relative;
    font-weight: 400;
    max-width: 200px;
    min-width: 200px;
    text-transform: uppercase;
    transition: 0.3s;
}
div#cc3-apply-modal .modal_btn:hover {
    background: transparent;
    border-radius: 0px;
    border: 2px solid #ffffff;
    color: #fff;
}
div#cc3-apply-modal img.loading_animation {
    display: none;
    width: 25px;
    margin-left: 0;
}


button#custom-button {
    padding: 10px;
    color: #fff;
    border-radius: 9px;
    cursor: pointer;
    width: 100%;
    background-color: transparent;
    border: 1px dashed #2a2a2a;
}
.contact-validate-form input[type="file"] {
    opacity: 0;
    visibility: hidden;
}
.g-recaptcha{
    margin-bottom: 20px;
}
form#contact_us_form .form-group {
    margin-bottom: 0px;
}
a.casestudey-box img {
    width: 100%;
}
.study-caption h3 {
    margin: 0;
    padding: 0;
    margin-bottom: 8px;
}
.study-caption {
    background: #323232;
    padding: 12px 20px;
    margin-bottom: 30px;
}
a.casestudey-box:hover {
    color: #fff;
    transform: scale(1.1);
}
.casetags {
    display: flex;
    align-items: center;        
    gap: 10px;
    flex-wrap: wrap;
}
.casetags span {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    color: #ffffff;
    font-weight: 500;
    border: 1px dashed rgba(255, 255, 255, 0.5);
}

.cc3-blog-hero {
    padding: 100px 40px 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-blog-h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 84px);
    line-height: 0.98;
    letter-spacing: 0.01em;
    color: #f5f4f0;
    margin-bottom: 24px;
    font-weight: 700;
}

.cc3-blog-h1-solid {
    color: #f5f4f0;
}

.cc3-blog-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    margin-bottom: 0;
}

/* ============================================================
   FILTER BAR — sticky
============================================================ */

.cc3-blog-filter-wrap {
    position: sticky;
    top: 64px;
    z-index: 50;
    background: #0d0d0d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 40px;
}

.cc3-blog-filter-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.cc3-blog-filter-tabs .cc3-tab-btn span {
    font-family: var(--font-mono);
    font-size: 10px;
    opacity: 0.5;
    margin-left: 4px;
}

/* ============================================================
   FEATURED POST
============================================================ */

.cc3-blog-featured-section {
    padding: 48px 40px 0;
}

.cc3-blog-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-blog-featured:hover {
    color: inherit;
}

.cc3-blog-featured-thumb {
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #1c1c1c;
}

.cc3-blog-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cc3-blog-featured:hover .cc3-blog-featured-thumb img {
    transform: scale(1.03);
}

.cc3-blog-featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #f5f4f0;
    color: #0a0a0a;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
}

.cc3-blog-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.cc3-blog-featured-title {
    font-family: var(--font-body);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    line-height: 1.25;
    color: #f5f4f0;
    margin-bottom: 16px;
}

.cc3-blog-featured-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.cc3-blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.cc3-blog-author {
    color: rgba(255, 255, 255, 0.5);
}

.cc3-blog-dot {
    opacity: 0.4;
}

/* ============================================================
   GRID SECTION
============================================================ */

.cc3-blog-grid-section {
    padding: 56px 40px 100px;
}

.cc3-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cc3-blog-card {
    display: block;
    background: #0d0d0d;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s ease;
}

.cc3-blog-card:hover {
    background: #1c1c1c;
    color: inherit;
}

.cc3-blog-card.cc3-blog-hidden {
    display: none;
}

.cc3-blog-thumb {
    aspect-ratio: 16/10;
    border-radius: 6px;
    margin-bottom: 20px;
    overflow: hidden;
    background: #141417;
}

.cc3-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cc3-blog-card:hover .cc3-blog-thumb img {
    transform: scale(1.04);
}

.cc3-blog-card-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #f5f4f0;
    margin-top: 14px;
    margin-bottom: 12px;
}

.cc3-blog-empty {
    display: none;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    padding: 60px 0;
}

.cc3-blog-empty.cc3-blog-empty--visible {
    display: block;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */

@media (max-width: 1024px) {
    .cc3-blog-featured {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cc3-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */

@media (max-width: 768px) {
    .cc3-blog-hero {
        padding: 56px 20px 40px;
    }

    .cc3-blog-filter-wrap {
        padding: 12px 16px;
        top: 0;
        position: relative;
    }

    .cc3-blog-featured-section {
        padding: 32px 16px 0;
    }

    .cc3-blog-featured {
        padding-bottom: 32px;
    }

    .cc3-blog-grid-section {
        padding: 32px 16px 64px;
    }

    .cc3-blog-grid {
        grid-template-columns: 1fr;
    }

    .cc3-blog-card {
        padding: 20px;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    .cc3-blog-card,
    .cc3-blog-featured-thumb img,
    .cc3-blog-thumb img {
        transition: none;
    }
}