:root {
    --sage: #F0F4F1;
    --mint: #D8E2DC;
    --charcoal: #22252A;
    --spruce: #354F52;
    --spruce-lt: #4a6e72;
    --white: #FFFFFF;
    --border: rgba(53, 79, 82, 0.15);
    --shadow-sm: 0 5px 12px rgba(34, 37, 42, 0.3);
    --shadow-md: 0 8px 40px rgba(34, 37, 42, 0.12);
    --shadow-lg: 0 20px 60px rgba(34, 37, 42, 0.16);
    --radius: 16px;
    --radius-lg: 24px
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--sage);
    color: var(--charcoal);
    overflow-x: hidden
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--sage)
}

::-webkit-scrollbar-thumb {
    background: var(--spruce);
    border-radius: 3px
}

nav {
    position: fixed;
    top: env(safe-area-inset-top, 0);
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(240, 244, 241, 0.10);
    -webkit-backdrop-filter: blur(20px) saturate(200%) contrast(1.15);
    backdrop-filter: blur(20px) saturate(200%) contrast(1.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 4px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0
}

nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none
}

nav.nav-scrolled {
    top: 12px;
    left: 16px;
    right: 16px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), 0 8px 32px rgba(34, 37, 42, 0.12)
}

.nav-inner {
    max-width: 1448px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 88px
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.62rem;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px
}

.logo-dot {
    color: var(--spruce)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px
}

.nav-links a {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
    opacity: 0.80;
    transition: opacity 0.2s;
    letter-spacing: 0.01em;
    padding: 0 15px
}

.nav-links a:hover {
    opacity: 1
}

.nav-links a.highlight {
    opacity: 1;
    color: var(--spruce);
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-cta {
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 40px;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.01em
}

.nav-cta:hover {
    background: var(--spruce);
    transform: translateY(-1px)
}

#hero {
    min-height: 682px;
    display: grid;
    grid-template-columns: minmax(0, 630px) minmax(0, 1fr);
    align-items: start;
    column-gap: 80px;
    padding: 146px 72px 0;
    max-width: 1448px;
    margin: 0 auto;
    position: relative;
    overflow: visible
}

.hero-left {
    position: relative;
    z-index: 2
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(216, 226, 220, 0.48);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--spruce);
    margin-bottom: 34px
}

.hero-eyebrow span {
    width: 8px;
    height: 8px;
    background: var(--spruce);
    border-radius: 50%;
    display: inline-block
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px
}

h1 em {
    font-style: italic;
    color: var(--spruce)
}

#hero h1 {
    max-width: 660px;
    font-size: clamp(3rem, 3.85vw, 3.58rem);
    line-height: 1.06;
    margin-bottom: 22px
}

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(34, 37, 42, 0.65);
    max-width: 615px;
    margin-bottom: 34px;
    font-weight: 400
}

.hero-ctas {
    display: flex;
    gap: 20px;
    align-items: center
}

.btn-primary {
    background: var(--charcoal);
    color: var(--white);
    padding: 16px 30px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.01em
}

.btn-primary:hover {
    background: var(--spruce);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

.btn-outline {
    background: rgba(128, 128, 128, 0.05);
    color: var(--charcoal);
    padding: 15px 30px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.01em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.btn-outline:hover {
    border-color: var(--spruce);
    color: var(--spruce)
}

.team-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 12px 20px;
    border: 1.5px solid var(--border);
    border-radius: 40px;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    transition: border-color 0.2s, background 0.2s
}

.team-panel-cta:hover {
    border-color: var(--spruce);
    background: rgba(53, 79, 82, 0.06)
}

@media (min-width:1025px) {
    .team-panel-cta {
        display: none
    }
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    top: 32px
}

.hero-visual {
    width: 480px;
    height: 480px;
    position: relative
}

.hv-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(53, 79, 82, 0.25);
    aspect-ratio: 1 / 1;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    will-change: transform;
    z-index: 0
}

.hv-ring::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--spruce);
    border-radius: 50%;
    top: -3.5px;
    left: calc(50% - 3px);
    box-shadow: 0 0 8px var(--spruce)
}

.hv-ring-1 {
    width: 100%;
    animation: spin-ring-cw 40s linear infinite
}

.hv-ring-2 {
    width: 75%;
    animation: spin-ring-ccw 30s linear infinite
}

.hv-card {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 26px 20px;
    box-shadow: 0 26px 70px rgba(34, 37, 42, 0.12);
    width: 250px;
    min-height: 126px;
    z-index: 4
}

.hv-card-1 {
    top: 3.4%;
    left: 21%
}

.hv-card-2 {
    bottom: 5%;
    left: 21%
}

.hv-card-3 {
    top: 36.5%;
    left: 21%;
    background: var(--charcoal);
    color: var(--white);
    box-shadow: 0 24px 60px rgba(34, 37, 42, 0.22)
}

.hv-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: var(--spruce);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.72;
    z-index: 2
}

.hv-center svg {
    width: 58px;
    height: 58px;
    opacity: 0
}

.hv-label {
    font-size: 0.76rem;
    font-weight: 600;
    color: rgba(34, 37, 42, 0.58);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3
}

.hv-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.52rem;
    font-weight: 700;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    line-height: 1;
    margin-bottom: 2px
}

.hv-card-3 .hv-label {
    color: rgba(255, 255, 255, 0.45)
}

.hv-card-3 .hv-value {
    color: var(--white)
}

.hv-dot {
    width: 9px;
    height: 9px;
    background: #6FD08C;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    flex-shrink: 0
}

.hv-card-header {
    display: block;
    margin-bottom: 14px
}

.hv-chart {
    position: absolute;
    top: 52px;
    right: 26px;
    width: 82px;
    height: 36px;
    flex-shrink: 0;
    opacity: 0.9
}

.hv-barchart {
    width: 64px;
    height: 34px;
    margin-top: 2px
}

.hv-sublabel {
    font-size: 0.82rem;
    color: rgba(34, 37, 42, 0.58);
    margin-top: 8px;
    font-weight: 400
}

.hv-card-3 .hv-sublabel {
    color: rgba(255, 255, 255, 0.45)
}

.hv-side-label {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 92px;
    z-index: 5
}

.hv-side-left {
    left: -48px
}

.hv-side-right {
    right: -48px
}

.hv-side-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm)
}

.hv-side-icon svg {
    width: 22px;
    height: 22px;
    color: var(--spruce)
}

.hv-side-text {
    font-size: 0.86rem;
    font-weight: 700;
    color: rgba(34, 37, 42, 0.78);
    text-align: center;
    line-height: 1.3
}

.hv-side-arrow {
    display: none
}

.hv-process-arcs {
    position: absolute;
    inset: 0 -92px;
    width: calc(100% + 184px);
    height: 100%;
    color: rgba(53, 79, 82, 0.48);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 3 7;
    pointer-events: none;
    z-index: 1
}

.hv-process-arcs path {
    animation: flow-dash 10s linear infinite
}

@keyframes flow-dash {
    to {
        stroke-dashoffset: -100
    }
}

.hero-services-strip {
    max-width: 1448px;
    margin: 0 auto;
    padding: 0 72px 42px
}

.hss-inner {
    display: flex;
    flex-direction: column;
    gap: 0
}

.hss-divider {
    height: 1px;
    background: var(--border);
    width: 630px;
    max-width: 100%
}

.hss-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 157.5px));
    align-items: flex-start;
    gap: 0;
    padding: 32px 0 48px;
    position: relative
}

.hss-service {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-right: 28px
}

.hss-service+.hss-service {
    padding-left: 0;
    border-left: none
}

.hss-icon {
    width: 42px;
    height: 42px;
    background: var(--mint);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.hss-icon svg {
    width: 18px;
    height: 18px;
    color: var(--spruce)
}

.hss-content {
    flex: 1
}

.hss-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.3
}

.hss-desc {
    font-size: 0.84rem;
    line-height: 1.6;
    color: rgba(34, 37, 42, 0.55)
}

.hss-badge {
    position: absolute;
    top: 32px;
    left: calc(720px + ((100% - 720px) / 2));
    transform: translateX(-50%);
    min-width: 332px;
    text-align: center;
    margin-left: 0;
    background: rgba(216, 226, 220, 0.68);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 10px 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--spruce);
    white-space: nowrap
}

.hss-row+.hss-divider {
    display: none
}

.hss-stats-row {
    display: flex;
    align-items: center;
    height: 108px;
    margin: 0 -12px;
    padding: 22px 38px;
    gap: 0;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58), 0 10px 38px rgba(34, 37, 42, 0.04)
}

.hss-stat {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px
}

.hss-stat-sep {
    width: 1px;
    height: 50px;
    background: var(--border);
    margin: 0 20px;
    flex-shrink: 0
}

.hss-stat-icon {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.hss-stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--spruce)
}

.hss-stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 2px
}

.hss-stat-lbl {
    display: block;
    font-size: 0.82rem;
    color: rgba(34, 37, 42, 0.5);
    line-height: 1.3
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border)
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    display: block
}

.hero-stat-lbl {
    font-size: 0.75rem;
    color: rgba(34, 37, 42, 0.55)
}

@keyframes spin-ring-cw {
    from {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes spin-ring-ccw {
    from {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    to {
        transform: translate(-50%, -50%) rotate(-360deg)
    }
}

section {
    min-height: auto;
    padding: 72px 48px 24px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible
}

section.full-bleed {
    max-width: none
}

#faq-view section,
#faq-view section.full-bleed {
    height: auto;
    min-height: auto;
    justify-content: flex-start;
    padding: 50px;
    overflow: visible
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--spruce);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px
}

.section-tag::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: var(--spruce);
    display: block
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 12px
}

h2 em {
    font-style: italic;
    color: var(--spruce)
}

.section-sub {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(34, 37, 42, 0.62);
    max-width: 560px
}

#about {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center
}

.about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.about-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    transition: transform 0.3s, box-shadow 0.3s
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.about-card:first-child {
    grid-column: 1 / -1;
    background: var(--spruce);
    color: var(--white)
}

.about-card:first-child .ac-title {
    color: rgba(255, 255, 255, 0.6)
}

.about-card:first-child .ac-body {
    color: rgba(255, 255, 255, 0.85)
}

.ac-icon {
    font-size: 1.3rem;
    margin-bottom: 10px
}

.ac-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(34, 37, 42, 0.72);
    margin-bottom: 8px
}

.ac-body {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(34, 37, 42, 0.65)
}

#results {
    background: var(--charcoal);
    max-width: none;
    padding: 72px 48px 24px
}

.results-inner {
    max-width: 1280px;
    margin: 0 auto
}

#results .section-tag {
    color: var(--mint)
}

#results .section-tag::before {
    background: var(--mint)
}

#results h2 {
    color: var(--white)
}

#results .section-sub {
    color: rgba(255, 255, 255, 0.55)
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08)
}

.result-item {
    padding: 24px 20px;
    background: var(--charcoal);
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.3s
}

.result-item:last-child {
    border-right: none
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.04)
}

.result-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
    display: block
}

.result-num span {
    color: var(--mint)
}

.result-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5
}

.result-icon {
    font-size: 1.4rem;
    margin-bottom: 12px;
    display: block
}

#work {
    height: auto;
    overflow: visible;
    gap: 0;
    padding-bottom: 56px
}

.work-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px
}

.work-top-left h2 {
    margin-bottom: 14px
}

.work-think-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-sm)
}

.wtc-icon {
    width: 52px;
    height: 52px;
    background: var(--spruce);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white)
}

.wtc-icon svg {
    width: 22px;
    height: 22px
}

.wtc-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
    line-height: 1.3
}

.wtc-body {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(34, 37, 42, 0.6);
    margin: 0;
    max-width: 100%
}

.work-flows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 36px
}

.wf-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm)
}

.wf-label-btn {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 40px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 24px
}

.wf-label-spruce {
    background: var(--spruce);
    color: var(--white)
}

.wf-label-dark {
    background: var(--charcoal);
    color: var(--white)
}

.wf-diagram {
    display: flex;
    flex-direction: column;
    gap: 0
}

.wfd-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0
}

.wfd-return-arc {
    height: 36px;
    margin: 2px 0;
    padding: 0 4px
}

.wfd-return-arc svg {
    width: 100%;
    height: 100%
}

.wf-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-align: center;
    padding: 4px 2px
}

.wfs-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(34, 37, 42, 0.4);
    letter-spacing: 0.05em
}

.wfs-icon {
    width: 42px;
    height: 42px;
    background: var(--sage);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--spruce)
}

.wfs-icon svg {
    width: 18px;
    height: 18px
}

.wfs-label {
    font-size: 0.68rem;
    line-height: 1.4;
    color: rgba(34, 37, 42, 0.65);
    font-weight: 500
}

.wfd-arrow {
    font-size: 0.85rem;
    color: rgba(34, 37, 42, 0.6);
    font-weight: 600;
    padding: 0 2px;
    margin-bottom: 18px;
    line-height: 1
}

.wf-legend {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap
}

.wfl-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    color: rgba(34, 37, 42, 0.55);
    font-weight: 500
}

.wfl-line {
    width: 28px;
    height: 2px;
    display: inline-block;
    border-radius: 2px
}

.wfl-line.solid {
    background: var(--charcoal)
}

.wfl-line.dashed {
    background: transparent;
    border-top: 2px dashed rgba(34, 37, 42, 0.4)
}

.wfl-check {
    width: 18px;
    height: 18px;
    background: var(--spruce);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700
}

.work-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 32px
}

.wf-feat {
    background: var(--white);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background 0.2s
}

.wf-feat:hover {
    background: var(--sage)
}

.wf-feat-icon {
    width: 40px;
    height: 40px;
    background: #354F52;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--spruce);
    margin-bottom: 4px
}

.wf-feat-icon svg {
    width: 18px;
    height: 18px
}

.wf-feat-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.3
}

.wf-feat-desc {
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(34, 37, 42, 0.55)
}

.work-quote {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0 0
}

.wq-bar {
    width: 3px;
    height: 48px;
    background: var(--spruce);
    border-radius: 2px;
    flex-shrink: 0
}

.work-quote p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(34, 37, 42, 0.65);
    font-style: normal
}

.work-quote p em {
    font-style: italic;
    color: var(--spruce);
    font-weight: 600
}

@media (max-width:900px) {
    .work-top {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .work-flows {
        grid-template-columns: 1fr
    }

    .work-features {
        grid-template-columns: repeat(2, 1fr)
    }

    .wf-card {
        padding: 20px
    }

    .wf-diagram {
        overflow-x: auto;
        padding-bottom: 12px;
        min-width: 0
    }

    .wfd-row {
        min-width: 0;
        gap: 10px
    }

    .wf-step {
        min-width: 0
    }
}

@media (max-width:560px) {
    .work-features {
        grid-template-columns: 1fr 1fr
    }

    .wfd-row {
        min-width: 0;
        gap: 8px
    }

    .wf-label-btn {
        font-size: 0.7rem;
        padding: 6px 14px
    }

    .wfs-icon {
        width: 36px;
        height: 36px
    }

    .wfs-icon svg {
        width: 15px;
        height: 15px
    }

    .wfd-arrow {
        display: none
    }

    .wfs-label {
        font-size: 0.72rem
    }
}

.panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(34, 37, 42, 0.5);
    z-index: 990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s
}

.panel-overlay.active {
    opacity: 1;
    pointer-events: all
}

.project-content-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 55vw;
    max-width: 640px;
    background: var(--white);
    z-index: 995;
    padding: 72px 48px 40px;
    overflow-y: auto;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg)
}

.project-content-panel.from-left {
    left: 0;
    transform: translateX(-100%)
}

.project-content-panel.from-right {
    right: 0;
    transform: translateX(100%)
}

.project-content-panel.active {
    transform: translateX(0)
}

.panel-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sage);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal)
}

.panel-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.78rem;
    color: rgba(34, 37, 42, 0.35);
    margin-bottom: 12px
}

.project-content-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 16px
}

.project-content-panel .project-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(34, 37, 42, 0.65);
    margin-bottom: 32px
}

.project-content-panel .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px
}

.project-content-panel .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(34, 37, 42, 0.72);
    line-height: 1.5
}

.project-content-panel .feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--spruce);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px
}

.project-content-panel .project-result-bar {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 24px
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(34, 37, 42, 0.72);
    line-height: 1.4
}

.feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--spruce);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px
}

.tech-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.chip {
    background: var(--sage);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--spruce);
    font-family: 'DM Mono', monospace
}

.project-result-bar {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 24px
}

.prb-item {
    flex: 1
}

.prb-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal)
}

.prb-lbl {
    font-size: 0.75rem;
    color: rgba(34, 37, 42, 0.45);
    margin-top: 2px
}

.team-header {
    margin-bottom: 24px
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.team-card-top {
    padding: 24px 22px 18px;
    background: var(--sage);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--border)
}

.team-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--spruce);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white)
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 3px
}

.team-role {
    font-size: 0.75rem;
    color: var(--spruce);
    font-weight: 600;
    letter-spacing: 0.02em
}

.team-card-body {
    padding: 18px 22px 22px
}

.team-dept {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(34, 37, 42, 0.38);
    font-weight: 700;
    margin-bottom: 10px
}

.team-bio {
    font-size: 0.82rem;
    line-height: 1.65;
    color: rgba(34, 37, 42, 0.62)
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px
}

.skill-pill {
    background: var(--sage);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(34, 37, 42, 0.55);
    letter-spacing: 0.01em
}

#cta-section {
    background: #354F52;
    max-width: none;
    padding: 48px 48px 36px;
    position: relative;
    overflow: hidden
}

#cta-section .inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: start
}

#cta-section h2 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 12px;
    font-weight: 500
}

#cta-section h2 .highlight-italic {
    font-style: italic;
    color: #a9d3ab;
    font-weight: 400
}

#cta-section .section-tag {
    color: #a9d3ab;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px
}

#cta-section .section-sub {
    color: rgba(255, 255, 255, 0.7);
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 300
}

.cta-perks-new {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.cta-perks-new li {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.cta-perks-new .perk-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a9d3ab;
    flex-shrink: 0;
    transition: all 0.3s ease
}

.cta-perks-new li:hover .perk-icon-box {
    background: rgba(169, 211, 171, 0.1);
    border-color: rgba(169, 211, 171, 0.2);
    color: #ffffff;
    transform: translateY(-2px)
}

.cta-perks-new .perk-icon-box svg {
    width: 15px;
    height: 15px
}

.cta-perks-new li strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px
}

.cta-perks-new li span {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    line-height: 1.4
}

.cta-metrics-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    gap: 16px
}

.cta-metrics-card .metric-item {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 1
}

.cta-metrics-card .metric-icon {
    color: #a9d3ab;
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.cta-metrics-card .metric-icon svg {
    width: 100%;
    height: 100%
}

.cta-metrics-card .metric-title {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: #ffffff;
    margin-bottom: 2px
}

.cta-metrics-card .metric-desc {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.2
}

.cta-form {
    background: var(--white);
    border-radius: 20px;
    padding: 14px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative
}

.cta-card-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 4px
}

.cta-header-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eaf2ec;
    border: 1px solid #cce3d3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #354f52;
    flex-shrink: 0
}

.cta-header-icon svg {
    width: 16px;
    height: 16px
}

.cta-card-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 2px 0
}

.cta-card-header p {
    font-size: 0.8rem;
    color: rgba(34, 37, 42, 0.6);
    margin: 0
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 16px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative
}

.form-group.relative {
    position: relative
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--charcoal)
}

.form-group input,
.form-group textarea,
.form-group select {
    background: #f8faf8;
    border: 1.5px solid rgba(53, 79, 82, 0.12);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.88rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
    transition: all 0.25s ease;
    outline: none;
    resize: none;
    width: 100%;
    box-sizing: border-box
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23354f52' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 36px !important;
    cursor: pointer
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #354f52;
    box-shadow: 0 0 0 3px rgba(53, 79, 82, 0.05);
    background: #ffffff
}

.form-group textarea {
    height: 110px
}

.char-counter {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 0.7rem;
    color: rgba(34, 37, 42, 0.45);
    pointer-events: none;
    font-family: 'DM Sans', sans-serif
}

html,
body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%
}

img,
picture,
video {
    max-width: 100%;
    height: auto
}

.modal,
.mobile-nav-panel-inner,
.hv-card,
.cta-form {
    max-width: 100%;
    box-sizing: border-box
}

.cta-safety-alert {
    display: flex;
    gap: 10px;
    padding: 8px 12px;
    background: #f2f7f3;
    border: 1px solid #dbe8dd;
    border-radius: 8px;
    align-items: flex-start
}

.safety-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #354f52;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0
}

.safety-icon svg {
    width: 12px;
    height: 12px
}

.cta-safety-alert h5 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e3a2f;
    margin: 0 0 2px 0
}

.cta-safety-alert p {
    font-size: 0.75rem;
    color: rgba(30, 58, 47, 0.75);
    margin: 0;
    line-height: 1.3
}

.iti {
    width: 100%
}

.form-group .iti input {
    width: 100%
}

.iti__selected-flag {
    padding: 0 10px;
    border-radius: 8px 0 0 8px;
    background: transparent;
    outline: none
}

.iti__country-list {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
    white-space: normal;
    max-width: 320px;
    margin-top: 4px;
    z-index: 10
}

.iti__country {
    padding: 10px 14px;
    font-size: 0.85rem
}

.iti__country.iti__highlight {
    background: var(--sage)
}

.form-group input.error {
    border-color: #e74c3c !important;
    background-color: #fdf0ed !important
}

.error-msg {
    color: #e74c3c;
    font-size: 0.72rem;
    margin-top: 4px;
    display: none
}

.btn-submit {
    background: #354F52;
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.btn-submit:hover {
    background: #1e3d36;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15)
}

.btn-submit:hover svg {
    transform: translateX(4px)
}

.cta-whatsapp-footer {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px
}

.cta-whatsapp-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    letter-spacing: 0.02em
}

.cta-whatsapp-footer a:hover {
    color: #a9d3ab
}

.cta-whatsapp-footer a svg {
    color: #a9d3ab
}

@media (max-width:900px) {
    .cta-metrics-card {
        flex-direction: column;
        gap: 16px
    }
}

footer {
    background: var(--charcoal);
    padding: 72px 48px 40px
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 14px;
    display: block
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 24px
}

.footer-socials {
    display: flex;
    gap: 10px
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    color: rgba(255, 255, 255, 0.55)
}

.social-icon:hover {
    background: var(--spruce);
    border-color: var(--spruce);
    color: var(--white)
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor
}

.footer-col h5 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 18px
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s
}

.footer-col ul li a:hover {
    color: var(--white)
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.28)
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(34, 37, 42, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s
}

#otp-modal {
    z-index: 2000
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    width: 540px;
    max-width: 90vw;
    transform: translateY(20px);
    transition: transform 0.3s;
    max-height: 90vh;
    overflow-y: auto
}

.modal-overlay.active .modal-box {
    transform: translateY(0)
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px
}

.modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sage);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    flex-shrink: 0;
    margin-top: 4px
}

.success-msg {
    text-align: center;
    padding: 32px 0;
    display: none
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 12px
}

.success-msg h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 8px
}

.success-msg p {
    color: rgba(34, 37, 42, 0.55);
    font-size: 0.9rem
}

.compact-otp-box {
    width: 420px;
    padding: 32px;
    max-width: 92vw;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2)
}

.otp-modal-body {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.otp-info-card {
    background: #f8faf8;
    border: 1.5px solid rgba(53, 79, 82, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center
}

.otp-info-card p {
    margin: 0 0 4px 0;
    font-size: 0.85rem;
    color: rgba(34, 37, 42, 0.6)
}

.otp-info-card strong {
    font-size: 1rem;
    color: var(--charcoal);
    word-break: break-all;
    display: block
}

.otp-inputs-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin: 8px 0
}

.otp-input-digit {
    height: 48px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    border: 1.5px solid rgba(53, 79, 82, 0.15);
    border-radius: 8px;
    background: #f8faf8;
    outline: none;
    transition: all 0.2s ease;
    font-family: 'DM Sans', sans-serif;
    box-sizing: border-box;
    width: 100%
}

.otp-input-digit:focus {
    border-color: #354f52;
    box-shadow: 0 0 0 3px rgba(53, 79, 82, 0.08);
    background: #ffffff
}

.otp-resend-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(34, 37, 42, 0.6);
    margin-top: 8px
}

.otp-resend-row button {
    background: none;
    border: none;
    color: #354f52;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    outline: none;
    transition: color 0.2s;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem
}

.otp-resend-row button:hover:not(:disabled) {
    color: #1e3d36;
    text-decoration: underline
}

.otp-resend-row button:disabled {
    color: rgba(34, 37, 42, 0.4);
    cursor: not-allowed
}

.shake-animation {
    animation: shake 0.4s ease-in-out
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0)
    }

    20%,
    60% {
        transform: translateX(-8px)
    }

    40%,
    80% {
        transform: translateX(8px)
    }
}

#all-projects {
    background: var(--mint);
    max-width: none;
    padding: 72px 48px 64px;
    height: auto;
    overflow: visible;
    display: block
}

.ap-inner {
    max-width: 1280px;
    margin: 0 auto
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: 40px;
    grid-auto-rows: minmax(0, auto);
    align-items: stretch
}

.proj-card {
    min-height: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-sm);
    min-height: 0;
    width: 100%
}

.proj-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md)
}

.proj-card.featured {
    grid-column: span 2
}

@media (max-width:1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (max-width:768px) {
    .projects-grid {
        grid-template-columns: 1fr
    }

    .proj-visual {
        height: 170px
    }
}

.proj-visual {
    height: 180px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden
}

.proj-card.featured .proj-visual {
    height: 220px
}

.pv-bg-1 {
    background: linear-gradient(135deg, var(--spruce) 0%, #2a3e41 100%)
}

.pv-bg-2 {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1d21 100%)
}

.pv-bg-3 {
    background: linear-gradient(135deg, #354F52 60%, #4a6e72 100%)
}

.pv-bg-4 {
    background: linear-gradient(135deg, #1e3035 0%, #354F52 100%)
}

.pv-bg-5 {
    background: linear-gradient(135deg, #22252A 0%, #354F52 100%)
}

.pv-bg-6 {
    background: linear-gradient(135deg, #2c3e3f 0%, #22252A 100%)
}

.pv-bg-7 {
    background: linear-gradient(135deg, #354F52 0%, #22252A 100%)
}

.pv-geo {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.08)
}

.pv-geo-2 {
    position: absolute;
    right: 20px;
    bottom: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.05)
}

.proj-tag-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    width: fit-content
}

.proj-icon {
    font-size: 2rem
}

.proj-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.proj-body h3 {
    font-size: 1.15rem;
    letter-spacing: -0.015em;
    line-height: 1.3;
    margin-bottom: 10px
}

.proj-index {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: rgba(34, 37, 42, 0.28);
    margin-bottom: 10px
}

.proj-desc {
    font-size: 0.88rem;
    line-height: 1.68;
    color: rgba(34, 37, 42, 0.62);
    flex: 1;
    margin-bottom: 20px
}

.proj-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 16px;
    border-top: 1px solid var(--border)
}

.proj-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.proj-chips .chip {
    padding: 3px 10px;
    font-size: 0.74rem
}

.proj-status {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(34, 37, 42, 0.35);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6FD08C;
    flex-shrink: 0
}

.status-dot.yellow {
    background: #F0C05A
}

.proj-outcome {
    display: flex;
    gap: 20px;
    margin-bottom: 16px
}

.po-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal)
}

.po-lbl {
    font-size: 0.72rem;
    color: rgba(34, 37, 42, 0.4)
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-delay-1 {
    transition-delay: 0.1s
}

.reveal-delay-2 {
    transition-delay: 0.2s
}

.reveal-delay-3 {
    transition-delay: 0.3s
}

.reveal-delay-4 {
    transition-delay: 0.4s
}

#more-projects {
    min-height: auto;
    background: var(--mint);
    max-width: none;
    padding: 72px 32px 56px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center
}

#more-projects .inner {
    max-width: 580px;
    margin: 0 auto
}

#more-projects h2 {
    margin-bottom: 10px
}

#more-projects .section-sub {
    margin: 0 auto 20px;
    text-align: center;
    max-width: 560px
}

.btn-spruce {
    background: var(--spruce);
    color: var(--white);
    padding: 15px 32px;
    border-radius: 40px;
    font-size: 0.92rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-spruce:hover {
    background: #2a3e41;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(53, 79, 82, 0.3)
}

#faq-view {
    display: none
}

.faq-page-wrap {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 150px 48px 72px
}

.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.faq-sidebar-top .section-tag {
    margin-bottom: 16px
}

.faq-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    margin-bottom: 16px
}

.faq-main-title em {
    font-style: italic;
    color: var(--spruce)
}

.faq-sidebar-sub {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(34, 37, 42, 0.58);
    max-width: 280px
}

.faq-sidebar-highlight {
    background: var(--sage);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.fsh-icon {
    width: 44px;
    height: 44px;
    background: var(--spruce);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0
}

.fsh-icon svg {
    width: 20px;
    height: 20px
}

.fsh-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px
}

.fsh-body {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(34, 37, 42, 0.6);
    margin: 0
}

.faq-sidebar-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.faq-sidebar-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px
}

.fsf-icon {
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    flex-shrink: 0
}

.fsf-icon svg {
    width: 16px;
    height: 16px
}

.fsf-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 3px
}

.fsf-desc {
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(34, 37, 42, 0.55)
}

.faq-accordion-col {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-acc-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s
}

.faq-acc-item:hover {
    box-shadow: var(--shadow-md)
}

.faq-acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.2s
}

.faq-acc-header:hover {
    background: var(--sage)
}

.faq-acc-num {
    width: 32px;
    height: 32px;
    background: var(--spruce);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'DM Mono', monospace;
    transition: background 0.2s
}

.faq-acc-item:not(.open) .faq-acc-num {
    background: var(--charcoal)
}

.faq-acc-q {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.4
}

.faq-acc-icon {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(34, 37, 42, 0.5);
    background: var(--sage);
    transition: all 0.2s
}

.faq-acc-icon svg {
    width: 14px;
    height: 14px
}

.faq-acc-item .icon-minus {
    display: none
}

.faq-acc-item .icon-plus {
    display: block
}

.faq-acc-item.open .icon-minus {
    display: block
}

.faq-acc-item.open .icon-plus {
    display: none
}

.faq-acc-item.open .faq-acc-icon {
    background: var(--spruce);
    border-color: var(--spruce);
    color: var(--white)
}

.faq-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.25s ease;
    padding: 0 24px
}

.faq-acc-item.open .faq-acc-body {
    padding: 0 24px 24px
}

.faq-acc-body p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(34, 37, 42, 0.68);
    margin-bottom: 16px
}

.faq-acc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.faq-acc-tags span {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(34, 37, 42, 0.6);
    background: var(--sage);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 4px 12px
}

#support-section {
    background: var(--sage);
    border-top: 1px solid var(--border);
    padding: 80px 48px
}

.faq-support-inner {
    max-width: 1000px;
    margin: 0 auto
}

.faq-support-head {
    text-align: center;
    margin-bottom: 48px
}

.faq-support-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--charcoal);
    margin: 10px 0 12px;
    letter-spacing: -0.025em
}

.faq-support-sub {
    font-size: 0.92rem;
    color: rgba(34, 37, 42, 0.58);
    line-height: 1.6
}

.faq-support-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden
}

.faq-sc {
    background: var(--white);
    padding: 28px 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    transition: background 0.2s
}

.faq-sc:hover {
    background: #f8faf9
}

.faq-sc-icon {
    width: 40px;
    height: 40px;
    background: var(--sage);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--spruce);
    flex-shrink: 0;
    margin-right: 5px
}

.faq-sc-icon svg {
    width: 18px;
    height: 18px
}

.faq-sc-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px
}

.faq-sc-desc {
    font-size: 0.8rem;
    line-height: 1.55;
    color: rgba(34, 37, 42, 0.55);
    margin-bottom: 10px
}

.faq-sc-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--spruce);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
    overflow-wrap: anywhere
}

.faq-sc-link:hover {
    color: var(--charcoal)
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px
}

.footer-contact-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    flex-shrink: 0
}

.footer-contact-icon svg {
    width: 14px;
    height: 14px
}

.footer-contact-list a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s
}

.footer-contact-list a:hover {
    color: var(--white)
}

.footer-arrow {
    color: rgba(255, 255, 255, 0.28);
    margin-left: auto;
    font-size: 0.9rem
}

.footer-col ul li {
    display: flex;
    align-items: center
}

.footer-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.28)
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.28)
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s
}

.footer-legal-links a:hover {
    color: var(--white)
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

@media (max-width:900px) {
    .faq-page-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 90px 24px 56px
    }

    .faq-sidebar-sub {
        max-width: 100%
    }

    .faq-support-cards {
        grid-template-columns: 1fr
    }

    #support-section {
        padding: 56px 24px
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .footer-tagline {
        display: none
    }
}

@media (max-width:560px) {
    .faq-page-wrap {
        padding: 80px 16px 48px
    }

    .faq-acc-header {
        padding: 16px 18px;
        gap: 12px
    }

    .faq-acc-body {
        padding: 0 18px
    }

    .faq-acc-item.open .faq-acc-body {
        padding: 0 18px 18px
    }

    .faq-acc-q {
        font-size: 0.9rem
    }

    .faq-support-cards {
        grid-template-columns: 1fr;
        gap: 1px
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .footer-legal-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px
    }

    .footer-legal-links span {
        display: none
    }
}

.faq-list {
    display: none
}

.faq-item {
    display: none
}

#projects-view {
    display: none
}

.pv-page-header {
    padding: 120px 48px 40px;
    max-width: 1280px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px
}

.header-sub {
    font-size: 1.05rem;
    color: rgba(34, 37, 42, 0.58);
    line-height: 1.75;
    max-width: 520px
}

.header-meta {
    display: flex;
    gap: 32px;
    margin-top: 40px
}

.hm-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    display: block;
    line-height: 1
}

.hm-lbl {
    font-size: 0.78rem;
    color: rgba(34, 37, 42, 0.45);
    margin-top: 2px
}

.nav-back {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(34, 37, 42, 0.6);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s
}

.nav-back:hover {
    color: var(--spruce)
}

.page-cta {
    background: var(--charcoal);
    padding: 80px 48px;
    text-align: center
}

.page-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 12px
}

.page-cta p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-bottom: 28px
}

.btn-cta {
    background: var(--white);
    color: var(--charcoal);
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.2s
}

.btn-cta:hover {
    background: var(--mint);
    transform: translateY(-2px)
}

#testimonials {
    min-height: auto;
    padding: 80px 48px 56px;
    max-width: 1420px;
    margin: 0 auto
}

.testimonials-grid {
    display: grid;
    grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
    gap: 48px;
    align-items: start
}

.testimonials-copy {
    max-width: 460px
}

.testimonials-copy .section-tag {
    margin-bottom: 18px
}

.testimonials-copy h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    line-height: 1.12;
    margin-bottom: 16px
}

.testimonials-copy .section-sub {
    max-width: 100%;
    color: rgba(34, 37, 42, 0.62);
    font-size: 0.9rem;
    line-height: 1.6
}

.testimonial-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    grid-column: 1 / -1
}

.testimonial-highlight {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 18px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-sm)
}

.testimonial-highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    background: var(--spruce);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0
}

.testimonial-highlight-title {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--charcoal)
}

.testimonial-highlight-body {
    color: rgba(34, 37, 42, 0.62);
    font-size: 0.9rem;
    line-height: 1.6
}

.carousel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.carousel-window {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    position: relative
}

.carousel-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 28px calc(50% - 410px);
    width: 100%;
    box-sizing: border-box
}

.carousel-track::-webkit-scrollbar {
    display: none
}

.testimonial-card {
    flex: 0 0 820px;
    max-width: 100%;
    scroll-snap-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px 34px 32px;
    position: relative;
    opacity: 0.35;
    transform: scale(0.92);
    box-shadow: none;
    transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 50px rgba(34, 37, 42, 0.08)
}

.tc-card-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(53, 79, 82, 0.08);
    color: var(--spruce);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.testimonial-card:nth-child(even) .tc-card-label {
    background: rgba(34, 37, 42, 0.08);
    color: var(--charcoal)
}

.testimonial-card:nth-child(3n) .tc-card-label {
    background: rgba(111, 208, 140, 0.12);
    color: #3d7950
}

.tc-card-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 20px;
    position: relative
}

.tc-card-columns::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: var(--border);
    transform: translateX(-50%)
}

.tc-card-columns::after {
    content: '→';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(53, 79, 82);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(53, 79, 82, 0.1)
}

.testimonial-card:nth-child(even) .tc-card-columns::after {
    background: rgba(34, 37, 42, 0.06);
    color: var(--charcoal);
    border-color: rgba(34, 37, 42, 0.1)
}

.tc-column {
    padding: 0 12px
}

.tc-column-title {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--spruce);
    font-weight: 700;
    margin-bottom: 14px
}

.testimonial-card:nth-child(even) .tc-column-title {
    color: var(--charcoal)
}

.tc-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0
}

.tc-list li {
    position: relative;
    padding-left: 26px;
    color: rgba(34, 37, 42, 0.78);
    line-height: 1.5;
    font-size: 0.92rem
}

.tc-list li.negative::before,
.tc-list li.positive::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat
}

.tc-list li.negative::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D45A57' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='15' y1='9' x2='9' y2='15'/%3E%3Cline x1='9' y1='9' x2='15' y2='15'/%3E%3C/svg%3E")
}

.tc-list li.positive::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234E9F64' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='16 9 11 14 8 11'/%3E%3C/svg%3E")
}

.testimonial-card:nth-child(even) .tc-list li.positive::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322252A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='16 9 11 14 8 11'/%3E%3C/svg%3E")
}

.tc-quote {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    color: rgba(34, 37, 42, 0.65);
    margin-bottom: 18px;
    padding-top: 4px;
    border-top: 1px solid rgba(53, 79, 82, 0.08);
    padding-top: 16px
}

.tc-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
    flex-shrink: 0
}

.tc-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--spruce);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    flex-shrink: 0
}

.tc-avatar.alt {
    background: var(--charcoal)
}

.tc-avatar.green {
    background: #3d7950
}

.tc-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.3
}

.tc-role {
    font-size: 0.85rem;
    color: rgba(34, 37, 42, 0.55)
}

.tc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: auto
}

.tc-badge {
    background: rgba(53, 79, 82, 0.05);
    border: 1px solid rgba(53, 79, 82, 0.08);
    border-radius: 999px;
    color: var(--spruce);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 14px
}

.testimonial-card:nth-child(even) .tc-badge {
    background: rgba(34, 37, 42, 0.04);
    border-color: rgba(34, 37, 42, 0.08);
    color: var(--charcoal)
}

.testimonial-card:nth-child(3n) .tc-badge {
    background: rgba(111, 208, 140, 0.08);
    border-color: rgba(111, 208, 140, 0.15);
    color: #3d7950
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap
}

.carousel-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 4px 16px rgba(34, 37, 42, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 1rem;
    transition: all 0.25s ease
}

.carousel-nav:hover {
    background: var(--spruce);
    color: #fff;
    transform: scale(1.05)
}

.carousel-dots {
    display: flex;
    gap: 8px
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s
}

.carousel-dot.active {
    width: 20px;
    border-radius: 4px;
    background: var(--spruce)
}

@media (max-width:900px) {
    #testimonials {
        padding: 64px 24px 36px
    }

    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .testimonial-highlight {
        align-self: stretch
    }

    .tc-card-columns {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .tc-card-columns::before {
        display: none
    }

    .tc-card-columns::after {
        display: none
    }

    .tc-column {
        padding: 0
    }

    .tc-bottom-row {
        flex-direction: column;
        align-items: flex-start
    }

    .tc-badges {
        margin-left: 0
    }
}

@media (max-width:768px) {
    .carousel-track {
        padding: 16px 12%;
        gap: 20px
    }

    .testimonial-card {
        flex: 0 0 76vw;
        opacity: 0.45;
        transform: scale(0.92);
        filter: blur(2px)
    }

    .testimonial-card.active {
        opacity: 1;
        transform: scale(1);
        filter: none
    }
}

@media (max-width:560px) {
    #testimonials {
        padding: 54px 18px 32px
    }

    .testimonial-highlight {
        padding: 18px 18px
    }

    .testimonial-highlight-body {
        font-size: 0.92rem
    }

    .tc-card-label {
        font-size: 0.68rem;
        padding: 5px 10px;
        margin-bottom: 12px
    }

    .tc-list li {
        font-size: 0.78rem;
        padding-left: 18px
    }

    .tc-quote {
        font-size: 0.82rem;
        margin-bottom: 12px
    }

    .tc-author {
        gap: 10px;
        margin-bottom: 12px
    }

    .tc-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.9rem
    }

    .tc-name {
        font-size: 0.88rem
    }

    .tc-role {
        font-size: 0.74rem
    }

    .tc-badge {
        padding: 5px 10px;
        font-size: 0.68rem
    }
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s;
    flex-shrink: 0
}

.nav-hamburger:hover {
    background: rgba(53, 79, 82, 0.08)
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-nav-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 850;
    padding-top: 72px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s
}

.mobile-nav-panel.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all
}

.mobile-nav-panel-inner {
    margin: 8px 16px 0;
    background: rgba(230, 238, 232, 0.82);
    -webkit-backdrop-filter: blur(32px) saturate(190%);
    backdrop-filter: blur(32px) saturate(190%);
    border: 1px solid rgba(255, 255, 255, 0.60);
    border-radius: var(--radius);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.90), 0 12px 48px rgba(34, 37, 42, 0.18);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.mobile-nav-panel-inner a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(53, 79, 82, 0.10);
    display: block;
    transition: color 0.2s, padding-left 0.2s
}

.mobile-nav-panel-inner a:last-of-type {
    border-bottom: none
}

.mobile-nav-panel-inner a:hover {
    color: var(--spruce);
    padding-left: 6px
}

.mobile-nav-cta {
    margin-top: 16px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 40px;
    padding: 13px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s
}

.mobile-nav-cta:hover {
    background: var(--spruce)
}

@media (max-height:520px) and (orientation:landscape) {
    #hero {
        min-height: auto;
        padding: 90px 32px 48px;
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }

    .hero-visual {
        width: clamp(200px, 35vw, 360px);
        height: clamp(200px, 35vw, 360px)
    }

    h1 {
        font-size: clamp(1.8rem, 4vw, 3rem)
    }

    section {
        padding: 48px 32px
    }
}

@media (max-width:1024px) {
    #hero {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        min-height: auto;
        padding: 120px 28px 56px
    }

    #hero h1 {
        font-size: clamp(2.65rem, 5vw, 3.35rem)
    }

    .about-right {
        grid-template-columns: 1fr 1fr
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .project-content-panel {
        width: 75vw
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .proj-card.featured {
        grid-column: span 2
    }

    .project-card {
        height: auto;
        position: relative;
        top: 0
    }

    .project-card-inner {
        flex-direction: column
    }

    .project-card-inner.reverse {
        flex-direction: column
    }

    .project-visual {
        flex: 1;
        padding: 32px
    }

    .project-content {
        padding: 32px
    }
}

@media (max-width:768px) {
    .nav-links {
        display: none !important
    }

    .nav-cta {
        display: none !important
    }

    .nav-back {
        font-size: 0.8rem
    }

    .nav-hamburger {
        display: flex
    }

    .mobile-nav-panel {
        display: block
    }

    .nav-inner {
        padding: 0 20px;
        height: 64px
    }

    nav.nav-scrolled {
        top: env(safe-area-inset-top, 0);
        left: 0;
        right: 0;
        border-radius: 0
    }

    #hero {
        height: auto;
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 100px 20px 56px;
        gap: 40px;
        text-align: center
    }

    #hero h1 {
        font-size: clamp(2.45rem, 8vw, 3.25rem)
    }

    section {
        height: auto;
        min-height: auto
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .hero-sub {
        text-align: center;
        max-width: 100%
    }

    .hero-ctas {
        justify-content: center;
        flex-wrap: wrap
    }

    .hero-stats {
        justify-content: center;
        gap: 24px
    }

    .hero-right {
        justify-content: center;
        top: 0
    }

    .hero-visual {
        width: clamp(260px, 72vw, 400px);
        height: clamp(260px, 72vw, 400px)
    }

    .hv-card {
        width: clamp(178px, 54vw, 220px);
        min-height: 104px;
        padding: 13px 14px 12px
    }

    .hv-chart {
        display: none
    }

    .hv-card-1,
    .hv-card-2,
    .hv-card-3 {
        left: 21%
    }

    .hv-card-1 {
        top: 4%
    }

    .hv-card-2 {
        top: 70%;
        bottom: auto
    }

    .hv-card-3 {
        top: 38%
    }

    section {
        padding: 64px 20px;
        height: auto;
        min-height: auto;
        overflow: visible;
        justify-content: flex-start
    }

    #results {
        padding: 64px 20px
    }

    #about {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .about-right {
        grid-template-columns: 1fr
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .result-item {
        padding: 32px 20px
    }

    .project-card {
        min-height: auto;
        padding: 0;
        height: auto
    }

    .project-card-inner {
        flex-direction: column
    }

    .project-visual {
        flex: 1;
        padding: 28px
    }

    .project-content {
        display: none
    }

    .btn-detail {
        display: block
    }

    .result-num {
        font-size: 2.2rem
    }

    .projects-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        overflow: visible;
        padding-bottom: 0
    }

    .projects-row::-webkit-scrollbar {
        display: none
    }

    .project-card {
        flex: none;
        width: 100%;
        scroll-snap-align: none;
        min-height: 320px;
        padding: 24px
    }

    .project-content-panel {
        width: 100vw;
        padding: 72px 24px 40px
    }

    .team-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        overflow: visible;
        padding-bottom: 0
    }

    .team-grid::-webkit-scrollbar {
        display: none
    }

    .team-card {
        flex: none;
        width: 100%;
        scroll-snap-align: none
    }

    .pv-page-header {
        padding: 100px 16px 40px
    }

    #all-projects {
        padding: 32px 12px
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 24px
    }

    .proj-card.featured {
        grid-column: span 1
    }

    .proj-body {
        padding: 20px
    }

    .proj-visual {
        padding: 24px 20px;
        height: 160px
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }

    footer {
        padding: 56px 20px 32px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center
    }

    #cta-section {
        padding: 64px 20px
    }

    #cta-section .inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .cta-form {
        padding: 32px 24px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    #more-projects {
        padding: 28px 12px;
        min-height: auto
    }

    .page-cta {
        padding: 48px 16px
    }
}

@media (max-width:480px) {
    h1 {
        font-size: clamp(2.2rem, 8vw, 3rem)
    }

    h2 {
        font-size: clamp(1.7rem, 6vw, 2.4rem)
    }

    .hero-visual {
        width: clamp(220px, 80vw, 320px);
        height: clamp(220px, 80vw, 320px)
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "brand brand" "nav services" "contact contact"
    }

    .footer-brand {
        grid-area: brand
    }

    .footer-top .footer-col:nth-of-type(1) {
        grid-area: nav
    }

    .footer-top .footer-col:nth-of-type(2) {
        grid-area: services
    }

    .footer-top .footer-col:nth-of-type(3) {
        grid-area: contact
    }

    .hero-stats {
        flex-direction: row;
        gap: 16px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: center
    }

    .modal-box {
        padding: 32px 20px
    }

    .project-card {
        min-height: auto
    }

    .page-cta {
        padding: 40px 16px
    }

    #more-projects {
        padding: 20px 12px;
        min-height: auto
    }

    .project-card-inner {
        flex-direction: column
    }

    .project-card-inner.reverse {
        flex-direction: column
    }

    .project-visual {
        flex: 1;
        padding: 28px
    }

    .project-content {
        padding: 28px
    }
}

@media (max-width:768px) {
    .projects-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch
    }

    .projects-grid::-webkit-scrollbar {
        display: none
    }

    .proj-card {
        flex: 0 0 85%;
        width: 85%;
        min-height: auto;
        height: auto;
        margin-right: 6px
    }

    .proj-card.featured {
        flex: 0 0 95%;
        width: 95%
    }
}

@media (max-width:480px) {
    .proj-card {
        flex: 0 0 92%;
        width: 92%
    }
}

@media (max-width:768px) {
    .hero-stats {
        display: flex;
        gap: 12px;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        overflow-x: hidden;
        padding: 12px 0 0 0
    }

    .hero-stats>div {
        flex: 1 1 0;
        min-width: 0;
        text-align: center;
        padding: 6px 0
    }

    .hero-stat-num {
        font-size: 1.25rem
    }

    .hero-stat-lbl {
        font-size: 0.7rem
    }
}

@media (max-width:480px) {
    .hero-stats {
        gap: 10px
    }

    .hero-stats>div {
        padding: 4px 0
    }

    .hero-stat-num {
        font-size: 1.1rem
    }

    .hero-stat-lbl {
        font-size: 0.65rem
    }
}

#desktop-toggle {
    position: fixed;
    top: 84px;
    right: 12px;
    z-index: 11000;
    background: rgba(34, 37, 42, 0.9);
    color: #fff;
    border: none;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(34, 37, 42, 0.12);
    display: inline-block
}

@media (min-width:820px) {
    #desktop-toggle {
        display: none
    }
}

#toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none
}

.toast {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    max-width: 360px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--charcoal);
    pointer-events: auto;
    transform: translateX(120%);
    opacity: 0;
    animation: toast-slide-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards
}

.toast.toast-error {
    border-left: 4px solid #e74c3c
}

.toast.toast-success {
    border-left: 4px solid var(--mint)
}

.toast-icon {
    font-size: 1.2rem
}

.toast-message {
    flex: 1;
    line-height: 1.4
}

.toast.hiding {
    animation: toast-slide-out 0.3s ease forwards
}

@keyframes toast-slide-in {
    to {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes toast-slide-out {
    to {
        transform: translateX(120%);
        opacity: 0
    }
}

@media (max-width:768px) {
    #toast-container {
        bottom: 16px;
        right: 16px;
        left: 16px;
        align-items: center
    }

    .toast {
        max-width: 100%;
        width: 100%
    }
}

@media (max-width:768px) {
    .hero-stats {
        display: flex !important;
        gap: 12px !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        overflow-x: hidden !important;
        padding: 12px 0 0 0 !important
    }

    .hero-stats>div {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        text-align: center !important;
        padding: 6px 0 !important
    }

    .hero-stat-num {
        font-size: 1.25rem !important
    }

    .hero-stat-lbl {
        font-size: 0.7rem !important
    }
}

@media (max-width:480px) {
    .hero-stats {
        gap: 10px !important
    }

    .hero-stats>div {
        padding: 4px 0 !important
    }

    .hero-stat-num {
        font-size: 1.1rem !important
    }

    .hero-stat-lbl {
        font-size: 0.65rem !important
    }
}

@media (max-width:1024px) {
    .hv-side-label {
        transform: translateY(-50%) scale(0.85)
    }

    .hv-side-left {
        left: -38px
    }

    .hv-side-right {
        right: -38px
    }

    .hero-services-strip {
        padding: 0 32px 48px
    }

    .hss-divider {
        width: 100%
    }

    .hss-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding-bottom: 34px
    }

    .hss-badge {
        display: none
    }

    .hss-service {
        padding-right: 16px
    }

    .hss-service+.hss-service {
        padding-left: 0
    }

    .hss-stats-row {
        margin: 0
    }
}

@media (max-width:768px) {
    .hero-services-strip {
        padding: 0 20px 40px
    }

    .hss-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 24px 0
    }

    .hss-service {
        padding-right: 0
    }

    .hss-service+.hss-service {
        padding-left: 0;
        border-left: none
    }

    .hss-stats-row {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
        margin: 0;
        padding: 20px 12px;
        overflow-x: auto
    }

    .hss-stat-sep {
        display: none
    }

    .hss-stat {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center
    }

    .hss-stat-num {
        font-size: 1.1rem
    }

    .hss-stat-lbl {
        font-size: 0.65rem
    }

    .hss-stat-icon {
        width: 34px;
        height: 34px
    }
}

@media (max-width:480px) {
    .hss-row {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .hss-stats-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        padding: 18px 12px
    }

    .hss-stat {
        flex: 0 0 calc(33% - 8px);
        min-width: 80px
    }
}

.legacy-section {
    display: none !important
}

.nav-links a,
.nav-cta {
    white-space: nowrap
}

@media (min-width:769px) and (max-width:1100px) {

    .nav-inner,
    nav.nav-scrolled .nav-inner {
        padding: 0 24px
    }

    .logo,
    nav.nav-scrolled .logo {
        font-size: 1.24rem
    }

    .nav-links {
        gap: 18px
    }

    .nav-links a {
        font-size: 0.86rem
    }

    .nav-cta {
        padding: 12px 18px;
        font-size: 0.82rem
    }
}

@media (min-width:769px) {
    nav.nav-scrolled {
        top: 6px;
        left: max(16px, calc((100vw - 1360px) / 2));
        right: max(16px, calc((100vw - 1360px) / 2));
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.78);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 18px 50px rgba(34, 37, 42, 0.12)
    }

    nav.nav-scrolled .nav-inner {
        height: 68px;
        padding: 0 72px
    }

    nav.nav-scrolled .logo {
        font-size: 1.46rem
    }
}

@media (min-width:769px) and (max-width:1100px) {
    nav.nav-scrolled .nav-inner {
        padding: 0 24px
    }
}

#about {
    max-width: 1270px;
    padding: 104px 0 0;
    display: block;
    scroll-margin-top: 96px
}

.about-shell {
    display: grid;
    grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
    gap: 74px;
    align-items: start;
    min-height: 468px;
    padding: 0 0 18px 42px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18)), rgba(255, 255, 255, 0.12);
    border-radius: 18px 18px 0 0
}

.about-copy {
    padding-top: 32px
}

.about-copy .section-tag,
.process-heading .section-tag {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 28px
}

.about-copy h2 {
    max-width: 520px;
    font-size: clamp(2.08rem, 2.46vw, 2.52rem);
    line-height: 1.14;
    letter-spacing: -0.035em;
    margin-bottom: 34px
}

.about-copy .section-sub {
    max-width: 520px;
    font-size: 1.02rem;
    line-height: 1.72;
    color: rgba(34, 37, 42, 0.66)
}

.about-rule {
    width: 32px;
    height: 1px;
    margin-bottom: 26px;
    background: rgba(53, 79, 82, 0.18)
}

.about-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px
}

.about-card {
    min-height: 250px;
    padding: 24px 24px 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(53, 79, 82, 0.14);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 10px 34px rgba(34, 37, 42, 0.08);
    transition: transform 0.3s, box-shadow 0.3s
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 18px 44px rgba(34, 37, 42, 0.12)
}

.about-card-story {
    grid-column: 1 / -1;
    min-height: 182px;
    padding: 26px 28px 22px;
    background: radial-gradient(circle at 82% 12%, rgba(216, 226, 220, 0.18), transparent 34%), linear-gradient(135deg, #24484A, #354F52);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 18px 42px rgba(34, 37, 42, 0.16)
}

.ac-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px
}

.about-card-story .ac-title-row {
    gap: 10px;
    margin-bottom: 18px
}

.ac-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--spruce);
    background: rgba(216, 226, 220, 0.76);
    border-radius: 14px
}

.about-card-story .ac-icon {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.86);
    background: transparent;
    border-radius: 0
}

.ac-icon svg {
    width: 24px;
    height: 24px
}

.about-card-story .ac-icon svg {
    width: 18px;
    height: 18px
}

.ac-title {
    margin: 0;
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(34, 37, 42, 0.78)
}

.about-card-story .ac-title {
    color: rgba(255, 255, 255, 0.92)
}

.ac-body {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(34, 37, 42, 0.68)
}

.about-card-story .ac-body {
    max-width: 620px;
    line-height: 1.52;
    color: rgba(255, 255, 255, 0.9)
}

#results {
    display: block;
    max-width: none;
    padding: 0 0 64px;
    background: transparent;
    scroll-margin-top: 96px
}

.results-inner {
    max-width: 1270px;
    margin: 0 auto
}

.results-stats-panel {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    min-height: 116px;
    padding: 24px 38px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(53, 79, 82, 0.14);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 42px rgba(34, 37, 42, 0.06)
}

.result-stat {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 26px;
    border-right: 1px solid rgba(53, 79, 82, 0.15)
}

.result-stat:last-child {
    border-right: 0
}

.result-stat-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #24484A;
    background: rgba(216, 226, 220, 0.74);
    border-radius: 14px
}

.result-stat-icon svg {
    width: 28px;
    height: 28px
}

.result-stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 5px
}

.result-stat-label {
    display: block;
    font-size: 0.85rem;
    line-height: 1.3;
    color: rgba(34, 37, 42, 0.68)
}

.process-panel {
    margin-top: 18px;
    padding: 24px 42px 34px;
    background: linear-gradient(135deg, rgba(216, 226, 220, 0.46), rgba(255, 255, 255, 0.28) 48%, rgba(216, 226, 220, 0.36)), rgba(255, 255, 255, 0.26);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 14px 44px rgba(34, 37, 42, 0.05)
}

.process-heading {
    text-align: center;
    margin-bottom: 26px
}

.process-heading .section-tag {
    justify-content: center;
    margin-bottom: 12px;
    color: var(--spruce)
}

#results .process-heading .section-tag {
    color: var(--spruce)
}

#results .process-heading .section-tag::before {
    background: var(--spruce)
}

.process-heading h2 {
    font-size: clamp(1.72rem, 2.1vw, 2.12rem);
    line-height: 1.18;
    margin: 0;
    color: var(--charcoal)
}

#results .process-heading h2 {
    color: var(--charcoal)
}

.process-steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr) 74px minmax(0, 1fr) 74px minmax(0, 1fr) 74px minmax(0, 1fr);
    align-items: start
}

.process-step {
    min-width: 0;
    text-align: center
}

.process-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #24484A;
    background: rgba(216, 226, 220, 0.86);
    border-radius: 14px
}

.process-icon svg {
    width: 30px;
    height: 30px
}

.process-step h3 {
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
    color: var(--charcoal)
}

.process-step p {
    max-width: 170px;
    margin: 0 auto;
    font-size: 0.86rem;
    line-height: 1.55;
    color: rgba(34, 37, 42, 0.78)
}

.process-arrow {
    position: relative;
    height: 62px
}

.process-arrow::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 7px;
    right: 8px;
    border-top: 1.5px dashed rgba(53, 79, 82, 0.42)
}

.process-arrow::after {
    content: '';
    position: absolute;
    top: 25px;
    right: 4px;
    width: 9px;
    height: 9px;
    border-top: 1.5px solid rgba(53, 79, 82, 0.42);
    border-right: 1.5px solid rgba(53, 79, 82, 0.42);
    transform: rotate(45deg)
}

@media (max-width:1279px) {

    #about,
    .results-inner {
        max-width: calc(100vw - 64px)
    }

    .about-shell {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 42px;
        padding-left: 32px;
        padding-right: 32px
    }

    .result-stat {
        gap: 12px;
        padding: 0 16px
    }

    .process-steps {
        grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr) 38px minmax(0, 1fr) 38px minmax(0, 1fr) 38px minmax(0, 1fr)
    }
}

@media (max-width:1024px) {
    #about {
        max-width: calc(100vw - 48px);
        padding-top: 88px
    }

    .about-shell {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: 0;
        padding: 32px 28px 12px
    }

    .about-copy h2 {
        max-width: 760px
    }

    .about-copy .section-sub {
        max-width: 760px
    }

    .about-right {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .results-inner {
        max-width: calc(100vw - 48px)
    }

    .results-stats-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px 0;
        padding: 24px
    }

    .result-stat {
        justify-content: flex-start;
        border-right: 0
    }

    .process-panel {
        padding: 28px 28px 32px
    }

    .process-steps {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 18px
    }

    .process-arrow {
        display: none
    }
}

@media (max-width:768px) {
    #about {
        max-width: none;
        padding: 72px 20px 0
    }

    .about-shell {
        padding: 26px 0 4px;
        background: transparent;
        border-radius: 0
    }

    .about-copy {
        text-align: center
    }

    .about-copy .section-tag {
        justify-content: center;
        margin-bottom: 22px
    }

    .about-copy h2 {
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(2rem, 6.4vw, 2.85rem)
    }

    .about-rule {
        margin-left: auto;
        margin-right: auto
    }

    .about-copy .section-sub {
        margin: 0 auto;
        font-size: 0.98rem
    }

    .about-right {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .about-card,
    .about-card-story {
        min-height: auto;
        padding: 22px
    }

    .results-inner {
        max-width: none;
        padding: 0 20px
    }

    .results-stats-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        min-height: 0;
        padding: 18px
    }

    .result-stat {
        min-height: 84px;
        padding: 10px;
        gap: 12px;
        background: rgba(255, 255, 255, 0.32);
        border: 1px solid rgba(53, 79, 82, 0.1);
        border-radius: 12px
    }

    .result-stat-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px
    }

    .result-stat-icon svg {
        width: 22px;
        height: 22px
    }

    .result-stat-num {
        font-size: 1.34rem
    }

    .result-stat-label {
        font-size: 0.72rem
    }

    .process-panel {
        margin-top: 16px;
        padding: 24px 18px
    }

    .process-heading {
        margin-bottom: 24px
    }

    .process-heading h2 {
        font-size: clamp(1.55rem, 5.5vw, 2.05rem)
    }

    .process-steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px
    }

    .process-step {
        position: relative;
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr);
        column-gap: 16px;
        text-align: left;
        padding: 0 0 14px
    }

    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 54px;
        bottom: -14px;
        left: 26px;
        border-left: 1.5px dashed rgba(53, 79, 82, 0.28)
    }

    .process-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 0;
        grid-row: 1 / span 2
    }

    .process-icon svg {
        width: 26px;
        height: 26px
    }

    .process-step h3 {
        align-self: end;
        margin: 3px 0 6px
    }

    .process-step p {
        max-width: none;
        margin: 0
    }
}

@media (max-width:480px) {
    #about {
        padding: 64px 16px 0
    }

    .about-copy h2 {
        font-size: clamp(1.58rem, 7.4vw, 2.05rem);
        line-height: 1.18
    }

    .about-copy .section-sub,
    .ac-body {
        font-size: 0.94rem
    }

    .ac-title-row {
        gap: 12px;
        margin-bottom: 14px
    }

    .ac-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px
    }

    .results-inner {
        padding: 0 16px
    }

    .results-stats-panel {
        grid-template-columns: 1fr
    }

    .result-stat {
        min-height: 74px
    }

    .process-panel {
        border-radius: 14px
    }
}

.pa-header {
    padding: 110px 48px 48px;
    background: var(--sage);
    border-bottom: 1px solid var(--border)
}

.pa-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 48px
}

.pa-header-left {
    flex: 1 1 auto;
    min-width: 0
}

.pa-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(34, 37, 42, 0.5);
    margin-bottom: 20px
}

.pa-eyebrow-line {
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background: rgba(34, 37, 42, 0.3);
    flex-shrink: 0
}

.pa-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--charcoal);
    margin-bottom: 18px
}

.pa-title em {
    font-style: italic;
    font-weight: 600;
    color: var(--spruce)
}

.pa-subtitle {
    font-size: 0.95rem;
    line-height: 1.72;
    color: rgba(34, 37, 42, 0.55);
    max-width: 400px
}

.pa-header-right {
    flex-shrink: 0
}

.pa-stats-box {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden
}

.pa-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 28px;
    gap: 6px;
    min-width: 100px
}

.pa-stat-icon {
    width: 28px;
    height: 28px;
    color: var(--spruce);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px
}

.pa-stat-icon svg {
    width: 22px;
    height: 22px
}

.pa-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1
}

.pa-stat-lbl {
    font-size: 0.7rem;
    color: rgba(34, 37, 42, 0.45);
    letter-spacing: 0.02em;
    line-height: 1.3
}

.pa-stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch
}

.pa-filter-bar {
    background: var(--sage);
    border-bottom: 1px solid var(--border);
    padding: 0 48px
}

.pa-filter-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0
}

.pa-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.pa-filter-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 40px;
    border: 1.5px solid rgba(34, 37, 42, 0.14);
    background: transparent;
    color: rgba(34, 37, 42, 0.65);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap
}

.pa-filter-btn:hover {
    border-color: var(--spruce);
    color: var(--spruce);
    background: rgba(53, 79, 82, 0.05)
}

.pa-filter-btn.active {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white)
}

.pa-sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.pa-sort-label {
    font-size: 0.82rem;
    color: rgba(34, 37, 42, 0.5);
    white-space: nowrap
}

.pa-sort-select-wrap {
    position: relative;
    display: flex;
    align-items: center
}

.pa-sort-select {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--charcoal);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 7px 32px 7px 12px;
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s
}

.pa-sort-select:focus {
    border-color: var(--spruce)
}

.pa-sort-chevron {
    position: absolute;
    right: 8px;
    pointer-events: none;
    color: rgba(34, 37, 42, 0.4);
    width: 14px;
    height: 14px
}

.pa-section {
    padding: 48px 48px;
    background: var(--sage)
}

.pa-section-featured {
    padding-bottom: 0
}

.pa-section-all {
    padding-top: 40px;
    padding-bottom: 56px
}

.pa-section-inner {
    max-width: 1280px;
    margin: 0 auto
}

.pa-section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(34, 37, 42, 0.5);
    margin-bottom: 24px
}

.pa-section-label svg {
    color: rgba(34, 37, 42, 0.5);
    flex-shrink: 0
}

.pa-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.pa-fc {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s
}

.pa-fc:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px)
}

.pa-fc-body {
    display: flex;
    gap: 0;
    flex: 1;
    min-height: 0
}

.pa-fc-content {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    gap: 0
}

.pa-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
    margin-bottom: 14px
}

.pa-live-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pa-pulse 2s ease-in-out infinite
}

.pa-live-green {
    background: #dcfce7;
    color: #15803d
}

.pa-live-green::before {
    background: #16a34a
}

@keyframes pa-pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.4
    }
}

.pa-fc-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--charcoal);
    margin-bottom: 4px;
    line-height: 1.15
}

.pa-fc-subtitle {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(34, 37, 42, 0.55);
    margin-bottom: 14px
}

.pa-fc-desc {
    font-size: 0.87rem;
    line-height: 1.72;
    color: rgba(34, 37, 42, 0.6);
    margin-bottom: 18px;
    flex: 1
}

.pa-fc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px
}

.pa-tag {
    font-size: 0.72rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(34, 37, 42, 0.07);
    color: rgba(34, 37, 42, 0.65);
    border: 1px solid rgba(34, 37, 42, 0.08)
}

.pa-tag-sm {
    font-size: 0.68rem
}

.pa-case-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s, color 0.2s
}

.pa-case-link:hover {
    gap: 8px;
    color: var(--spruce)
}

.pa-fc-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-top: 1px solid var(--border);
    font-size: 0.77rem;
    color: rgba(34, 37, 42, 0.45);
    background: rgba(240, 244, 241, 0.5)
}

.pa-fc-footer svg {
    color: rgba(34, 37, 42, 0.35);
    flex-shrink: 0
}

.pa-fc-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px 24px 8px;
    min-width: 200px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f1 100%);
    border-left: 1px solid var(--border)
}

.pa-laptop {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px
}

.pa-laptop-screen {
    width: 100%;
    background: #1a1d21;
    border-radius: 8px 8px 0 0;
    padding: 6px;
    box-shadow: 0 8px 32px rgba(34, 37, 42, 0.22);
    aspect-ratio: 16/10;
    overflow: hidden
}

.pa-screen-inner {
    width: 100%;
    height: 100%;
    background: #252830;
    border-radius: 4px;
    display: flex;
    overflow: hidden
}

.pa-screen-sidebar {
    width: 32px;
    background: #1e2127;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 6px;
    gap: 6px
}

.pa-ss-logo {
    width: 16px;
    height: 16px;
    background: var(--spruce);
    border-radius: 4px;
    margin-bottom: 6px
}

.pa-ss-nav-item {
    width: 16px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px
}

.pa-ss-active {
    background: rgba(111, 208, 140, 0.7)
}

.pa-screen-main {
    flex: 1;
    min-width: 0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.pa-sm-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 6px
}

.pa-sm-tb-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px
}

.pa-sm-tb-title {
    height: 5px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    width: 70%
}

.pa-sm-tb-sub {
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    width: 50%
}

.pa-sm-tb-btn {
    width: 28px;
    height: 10px;
    background: var(--spruce);
    border-radius: 3px;
    flex-shrink: 0;
    opacity: 0.8
}

.pa-sm-stats-row {
    display: flex;
    gap: 4px
}

.pa-sm-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    padding: 4px 4px;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.pa-sm-stat-green {
    background: rgba(111, 208, 140, 0.12)
}

.pa-sm-stat-num {
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    width: 60%
}

.pa-sm-stat-lbl {
    height: 3px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 2px;
    width: 80%
}

.pa-sm-table {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px
}

.pa-sm-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
    gap: 4px;
    padding: 3px 4px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 2px;
    align-items: center
}

.pa-sm-row>div {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px
}

.pa-sm-row-header {
    background: rgba(255, 255, 255, 0.07)
}

.pa-sm-row-header>div {
    background: rgba(255, 255, 255, 0.35)
}

.pa-sm-badge-green {
    height: 8px !important;
    background: rgba(111, 208, 140, 0.6) !important;
    border-radius: 3px !important
}

.pa-sm-badge-gray {
    height: 8px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 3px !important
}

.pa-sm-badge-yellow {
    height: 8px !important;
    background: rgba(240, 192, 90, 0.6) !important;
    border-radius: 3px !important
}

.pa-sm-doc-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px
}

.pa-sm-doc-row {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
    padding: 3px 4px
}

.pa-sm-doc-icon {
    width: 8px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1px;
    flex-shrink: 0
}

.pa-sm-doc-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.pa-sm-doc-lines>div:first-child {
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    width: 70%
}

.pa-sm-doc-lines>div:last-child {
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    width: 50%
}

.pa-sm-badge-sm {
    width: 14px !important;
    height: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    font-size: 7px !important;
    font-weight: 700 !important;
    flex-shrink: 0;
    line-height: 1
}

.pa-laptop-stand {
    width: 40px;
    height: 6px;
    background: #2a2d33;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px
}

.pa-laptop-base {
    width: 80px;
    height: 4px;
    background: #1e2127;
    border-radius: 0 0 4px 4px
}

.pa-systems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.pa-sys-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s, transform 0.25s;
    cursor: default
}

.pa-sys-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px)
}

.pa-sys-card.hidden {
    display: none
}

.pa-sys-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px
}

.pa-sys-icon {
    width: 36px;
    height: 36px;
    background: rgba(53, 79, 82, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.pa-sys-icon svg {
    width: 18px;
    height: 18px;
    color: var(--spruce)
}

.pa-sys-badge {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 5px
}

.pa-sys-live {
    background: #dcfce7;
    color: #15803d
}

.pa-sys-internal {
    background: rgba(34, 37, 42, 0.07);
    color: rgba(34, 37, 42, 0.45)
}

.pa-sys-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2px;
    letter-spacing: -0.01em
}

.pa-sys-subtitle {
    font-size: 0.75rem;
    color: rgba(34, 37, 42, 0.5);
    margin-bottom: 10px;
    font-weight: 400
}

.pa-sys-desc {
    font-size: 0.8rem;
    line-height: 1.65;
    color: rgba(34, 37, 42, 0.6);
    margin-bottom: 14px;
    flex: 1
}

.pa-sys-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px
}

.pa-sys-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: rgba(34, 37, 42, 0.4);
    border-top: 1px solid var(--border);
    padding-top: 12px;
    margin-top: auto
}

.pa-sys-meta svg {
    flex-shrink: 0;
    color: rgba(34, 37, 42, 0.3)
}

.pa-process-section {
    background: var(--sage);
    border-top: 1px solid var(--border);
    padding: 56px 48px
}

.pa-process-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px
}

.pa-process-left {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    flex-shrink: 0;
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border)
}

.pa-process-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(53, 79, 82, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--spruce)
}

.pa-process-icon-wrap svg {
    width: 22px;
    height: 22px
}

.pa-process-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--charcoal);
    margin-bottom: 10px;
    letter-spacing: -0.01em
}

.pa-process-sub {
    font-size: 0.8rem;
    line-height: 1.65;
    color: rgba(34, 37, 42, 0.55);
    margin-bottom: 20px
}

.pa-process-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    background: var(--charcoal);
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s, gap 0.2s
}

.pa-process-btn:hover {
    background: var(--spruce);
    gap: 10px
}

.pa-process-right {
    flex: 1;
    min-width: 0
}

.pa-process-steps {
    display: flex;
    align-items: flex-start;
    gap: 16px
}

.pa-process-step {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
}

.pa-ps-icon {
    width: 40px;
    height: 40px;
    background: rgba(53, 79, 82, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--spruce);
    flex-shrink: 0;
    margin-bottom: 4px
}

.pa-ps-icon svg {
    width: 18px;
    height: 18px
}

.pa-ps-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--charcoal)
}

.pa-ps-desc {
    font-size: 0.75rem;
    line-height: 1.55;
    color: rgba(34, 37, 42, 0.6)
}

.pa-process-arrow {
    font-size: 1rem;
    color: rgba(34, 37, 42, 0.3);
    margin-top: 50px;
    flex-shrink: 0
}

@media (min-width:1600px) {

    .pa-header-inner,
    .pa-filter-inner,
    .pa-section-inner,
    .pa-process-inner {
        max-width: 1440px
    }

    .pa-systems-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .pa-stat-item {
        padding: 28px 36px
    }

    .pa-stat-num {
        font-size: 1.6rem
    }

    .pa-fc-title {
        font-size: 1.9rem
    }
}

@media (max-width:1280px) {
    .pa-stat-item {
        padding: 20px 20px;
        min-width: 84px
    }

    .pa-systems-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px
    }

    .pa-fc-visual {
        min-width: 160px
    }

    .pa-laptop {
        width: 150px
    }

    .pa-process-left {
        width: 240px;
        padding: 24px
    }
}

@media (max-width:1100px) {
    .pa-header-inner {
        flex-direction: column;
        gap: 28px
    }

    .pa-stats-box {
        flex-wrap: wrap;
        width: 100%;
        max-width: 560px
    }

    .pa-stat-divider {
        display: none
    }

    .pa-stat-item {
        flex: 1 1 calc(50% - 1px);
        min-width: 120px;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border)
    }

    .pa-stat-item:nth-child(4n+3),
    .pa-stat-item:last-of-type {
        border-right: none
    }

    .pa-stat-item:last-of-type,
    .pa-stat-item:nth-last-of-type(-n+2) {
        border-bottom: none
    }

    .pa-systems-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .pa-featured-grid {
        grid-template-columns: 1fr
    }

    .pa-fc-body {
        flex-direction: row
    }

    .pa-fc-visual {
        border-left: 1px solid var(--border);
        border-top: none
    }
}

@media (max-width:1024px) {
    .pa-header {
        padding: 100px 32px 40px
    }

    .pa-filter-bar {
        padding: 0 32px
    }

    .pa-section {
        padding: 40px 32px
    }

    .pa-process-section {
        padding: 48px 32px
    }

    .pa-systems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px
    }

    .pa-process-inner {
        flex-direction: column;
        gap: 32px
    }

    .pa-process-left {
        width: 100%;
        max-width: 500px
    }

    .pa-process-steps {
        gap: 10px
    }

    .pa-process-right {
        width: 100%
    }
}

@media (max-width:900px) {
    .pa-filter-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

    .pa-filters {
        flex-wrap: wrap;
        gap: 6px
    }

    .pa-sort-wrap {
        align-self: flex-end
    }
}

@media (max-width:768px) {
    .pa-header {
        padding: 90px 24px 36px
    }

    .pa-filter-bar {
        padding: 0 24px
    }

    .pa-section {
        padding: 32px 24px
    }

    .pa-process-section {
        padding: 40px 24px
    }

    .pa-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem)
    }

    .pa-stats-box {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
        gap: 1px;
        background: var(--border);
        overflow: hidden
    }

    .pa-stat-item {
        padding: 16px 14px;
        min-width: 0;
        background: var(--white);
        border: none
    }

    .pa-stat-divider {
        display: none
    }

    .pa-featured-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .pa-fc-body {
        flex-direction: column
    }

    .pa-fc-visual {
        display: none;
        border: none;
        min-width: 0;
        width: 0;
        height: 0;
        padding: 0;
        margin: 0;
        overflow: hidden
    }

    .pa-laptop {
        width: 200px
    }

    .pa-systems-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .pa-process-steps {
        display: flex;
        flex-direction: column;
        gap: 16px
    }

    .pa-process-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px
    }

    .pa-ps-icon {
        flex-shrink: 0;
        margin-bottom: 0
    }

    .pa-process-arrow {
        display: none
    }

    .pa-filter-btn {
        font-size: 0.77rem;
        padding: 6px 12px
    }
}

@media (max-width:600px) {
    .pa-header {
        padding: 84px 16px 28px
    }

    .pa-filter-bar {
        padding: 0 16px
    }

    .pa-section {
        padding: 28px 16px
    }

    .pa-section-all {
        padding: 24px 16px 40px
    }

    .pa-process-section {
        padding: 32px 16px
    }

    .pa-title {
        font-size: 1.75rem
    }

    .pa-subtitle {
        font-size: 0.88rem
    }

    .pa-stats-box {
        grid-template-columns: 1fr 1fr;
        max-width: 100%
    }

    .pa-stat-num {
        font-size: 1.2rem
    }

    .pa-stat-lbl {
        font-size: 0.65rem
    }

    .pa-stat-item {
        padding: 14px 12px
    }

    .pa-stat-icon svg {
        width: 18px;
        height: 18px
    }

    .pa-filter-inner {
        padding: 10px 0
    }

    .pa-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        scrollbar-width: none
    }

    .pa-filters::-webkit-scrollbar {
        display: none
    }

    .pa-filter-btn {
        flex-shrink: 0;
        font-size: 0.75rem;
        padding: 6px 12px
    }

    .pa-sort-wrap {
        width: 100%;
        justify-content: flex-end
    }

    .pa-systems-grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .pa-fc-content {
        padding: 22px 20px
    }

    .pa-fc-footer {
        padding: 10px 20px
    }

    .pa-fc-title {
        font-size: 1.4rem
    }

    .pa-process-left {
        width: 100%
    }

    .pa-process-steps {
        display: flex;
        flex-direction: column;
        gap: 16px
    }

    .pa-process-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px
    }

    .pa-ps-icon {
        flex-shrink: 0;
        margin-bottom: 0
    }

    .pa-section-label {
        font-size: 0.68rem;
        margin-bottom: 16px
    }

    .pa-featured-grid {
        gap: 12px
    }

    .pa-fc {
        border-radius: var(--radius)
    }

    .pa-sys-card {
        padding: 18px 16px 14px
    }
}

@media (max-width:380px) {
    .pa-title {
        font-size: 1.55rem
    }

    .pa-header {
        padding: 80px 14px 24px
    }

    .pa-section {
        padding: 22px 14px
    }

    .pa-stats-box {
        grid-template-columns: 1fr 1fr
    }

    .pa-stat-item {
        padding: 12px 10px
    }

    .pa-stat-num {
        font-size: 1.1rem
    }

    .pa-systems-grid {
        grid-template-columns: 1fr
    }
}

*,
*::before,
*::after {
    box-sizing: border-box
}

html,
body {
    webkit-text-size-adjust: 100%;
    -text-size-adjust: 100%;
    overflow-x: hidden
}

img,
picture,
video {
    max-width: 100%
}

.about-shell {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    box-sizing: border-box
}

.about-copy {
    flex: 1 1 45%;
    min-width: 0
}

.about-right {
    flex: 1 1 50%;
    min-width: 0;
    padding: 0 !important
}

.ac-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px
}

.ac-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ac-icon svg {
    width: 18px;
    height: 18px;
    color: currentColor
}

.about-rule {
    width: 40px;
    height: 3px;
    background: var(--spruce);
    border-radius: 2px;
    margin: 16px 0 20px
}

@media (max-width:1024px) {
    .nav-inner {
        padding: 0 32px;
        height: 76px
    }

    .nav-links {
        gap: 22px
    }

    .nav-links a {
        font-size: 0.88rem;
        padding: 0 6px
    }

    .nav-cta {
        padding: 11px 20px;
        font-size: 0.88rem
    }

    #hero h1 {
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.08
    }

    .hero-sub {
        font-size: 0.98rem
    }

    .hero-services-strip {
        padding: 0 32px 32px
    }

    .hss-divider {
        width: 100%
    }

    .hss-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 24px 0 32px
    }

    .hss-badge {
        display: none
    }

    .hss-stats-row {
        flex-wrap: wrap;
        height: auto;
        padding: 16px 20px;
        gap: 0
    }

    .hss-stat {
        flex: 1 1 calc(50% - 1px);
        justify-content: flex-start;
        gap: 12px;
        padding: 10px 0
    }

    .hss-stat-sep {
        display: none
    }

    .hss-stat-num {
        font-size: 1.25rem
    }

    #about:not([style*="display:none"]) {
        display: block;
        padding-top: 40px !important;
        padding-bottom: 16px
    }

    .about-shell {
        flex-direction: column;
        gap: 28px;
        padding: 0 32px
    }

    .about-copy {
        flex: none;
        width: 100%
    }

    .about-right {
        flex: none;
        width: 100%;
        grid-template-columns: 1fr 1fr;
        display: grid;
        gap: 14px
    }

    .about-card:first-child {
        grid-column: 1 / -1
    }

    #results {
        padding: 40px 32px 24px
    }

    .results-inner {
        padding: 0
    }

    .process-heading {
        margin-bottom: 28px
    }

    .process-steps {
        flex-wrap: wrap;
        gap: 16px
    }

    .process-step {
        flex: 1 1 calc(33.333% - 16px);
        min-width: 120px
    }

    .process-arrow {
        display: none
    }

    #work {
        padding: 40px 32px 48px
    }

    .work-top {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 28px
    }

    .work-top-right {
        display: none !important
    }

    .work-flows {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .wf-card {
        padding: 22px 20px
    }

    .wfd-row {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        gap: 0;
        overflow-x: auto
    }

    .wfs-icon {
        width: 36px;
        height: 36px
    }

    .wfs-icon svg {
        width: 14px;
        height: 14px
    }

    .wfs-label {
        font-size: 0.6rem
    }

    .wfd-arrow {
        font-size: 0.72rem;
        margin-bottom: 16px
    }

    .work-features {
        grid-template-columns: repeat(4, 1fr)
    }

    .wf-feat {
        padding: 18px 14px
    }

    .wf-feat-title {
        font-size: 0.82rem
    }

    .wf-feat-desc {
        font-size: 0.72rem
    }

    #testimonials {
        padding: 48px 32px 40px
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .testimonial-highlight {
        display: none !important
    }

    .testimonial-panel {
        grid-column: auto
    }

    .carousel-track {
        padding: 20px 6%;
        gap: 20px
    }

    .testimonial-card {
        flex: 0 0 88%;
        padding: 24px 24px 28px
    }

    .tc-card-columns {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .tc-card-columns::before,
    .tc-card-columns::after {
        display: none !important
    }

    .tc-column {
        padding: 0
    }

    .tc-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }

    .tc-badges {
        margin-left: 0
    }

    #team {
        padding: 48px 32px 36px
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px
    }

    .team-header {
        margin-bottom: 20px
    }

    #contact {
        padding: 0;
        min-height: auto
    }

    #cta-section {
        padding: 48px 32px 36px;
        overflow: hidden
    }

    #cta-section .inner {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 100%;
        padding: 0
    }

    .cta-left {
        width: 100%
    }

    .cta-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 20px 22px
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 14px
    }

    .cta-metrics-card {
        flex-wrap: wrap;
        gap: 16px
    }

    .cta-whatsapp-footer {
        margin-top: 14px
    }

    footer {
        padding: 56px 32px 32px
    }

    .footer-top {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 32px
    }

    .footer-brand {
        grid-column: 1 / -1
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .footer-tagline {
        display: none
    }
}

@media (max-width:768px) {
    .nav-inner {
        padding: 0 18px;
        height: 64px
    }

    .nav-links {
        display: none !important
    }

    .nav-cta {
        display: none !important
    }

    .nav-hamburger {
        display: inline-flex !important
    }

    nav.nav-scrolled {
        top: 8px;
        left: 10px;
        right: 10px
    }

    #hero {
        display: flex;
        flex-direction: column;
        padding: 96px 18px 20px;
        gap: 24px;
        max-width: none
    }

    .hero-left {
        order: 1;
        width: 100%
    }

    .hero-right {
        order: 2;
        display: flex !important;
        justify-content: center;
        width: 100%;
        position: static !important;
        top: 0 !important
    }

    .hero-visual {
        width: 100% !important;
        max-width: 320px;
        height: auto !important;
        min-height: 140px;
        position: relative !important;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .hv-ring,
    .hv-process-arcs {
        display: none !important
    }

    .hv-side-label {
        display: none !important
    }

    .hv-center {
        display: none !important
    }

    .hv-card-2,
    .hv-card-3 {
        display: none !important
    }

    .hv-card-1 {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: 300px;
        margin: 0 auto;
        transform: none !important;
        min-height: auto
    }

    #hero h1 {
        font-size: clamp(1.85rem, 7.5vw, 2.6rem);
        line-height: 1.1;
        letter-spacing: -0.025em
    }

    .hero-sub {
        font-size: 0.92rem;
        line-height: 1.65;
        margin-bottom: 22px
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        padding: 7px 14px;
        letter-spacing: 0.06em
    }

    .hero-ctas {
        flex-direction: column;
        gap: 10px
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center
    }

    .hero-services-strip {
        padding: 0 18px 24px
    }

    .hss-inner {
        padding: 0;
        max-width: none
    }

    .hss-divider {
        width: 100%
    }

    .hss-row {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        padding: 18px 0 22px
    }

    .hss-badge {
        display: none
    }

    .hss-service {
        padding-right: 0;
        gap: 10px
    }

    .hss-icon {
        width: 36px;
        height: 36px
    }

    .hss-icon svg {
        width: 15px;
        height: 15px
    }

    .hss-title {
        font-size: 0.85rem;
        margin-bottom: 6px
    }

    .hss-desc {
        font-size: 0.75rem
    }

    .hss-stats-row {
        flex-wrap: wrap;
        height: auto;
        padding: 14px 0;
        margin: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        gap: 0
    }

    .hss-stat {
        flex: 1 1 50%;
        padding: 10px 6px;
        justify-content: flex-start;
        gap: 10px;
        border-bottom: 1px solid var(--border)
    }

    .hss-stat:nth-child(2n) {
        border-left: 1px solid var(--border);
        padding-left: 14px
    }

    .hss-stat:nth-last-child(-n+2) {
        border-bottom: none
    }

    .hss-stat-sep {
        display: none
    }

    .hss-stat-num {
        font-size: 1.1rem
    }

    .hss-stat-lbl {
        font-size: 0.7rem
    }

    .hss-stat-icon {
        width: 28px;
        height: 28px
    }

    .hss-stat-icon svg {
        width: 15px;
        height: 15px
    }

    #about {
        display: block !important;
        padding: 36px 0 20px !important;
        max-width: none
    }

    .about-shell {
        flex-direction: column;
        gap: 24px;
        padding: 0 18px;
        max-width: none
    }

    .about-copy {
        flex: none;
        width: 100%
    }

    .about-right {
        flex: none;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 !important
    }

    .about-card {
        padding: 16px 18px
    }

    .about-card:first-child {
        grid-column: auto
    }

    #results {
        padding: 40px 18px 24px
    }

    .results-inner {
        max-width: none
    }

    .process-panel {
        overflow: visible
    }

    .process-heading {
        margin-bottom: 24px
    }

    .process-steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .process-arrow {
        display: none !important
    }

    .process-step {
        min-width: 0
    }

    .process-step h3 {
        font-size: 0.9rem
    }

    .process-step p {
        font-size: 0.8rem
    }

    #work {
        padding: 36px 18px 40px
    }

    .work-top {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 20px
    }

    .work-top-right {
        display: none !important
    }

    .work-flows {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .wf-card {
        padding: 18px 16px;
        border-radius: var(--radius)
    }

    .wf-label-btn {
        font-size: 0.72rem;
        padding: 6px 14px;
        margin-bottom: 14px
    }

    .wf-diagram {
        overflow: visible !important
    }

    .wfd-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        align-items: start
    }

    .wfd-arrow {
        display: none !important
    }

    .wf-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 8px 6px;
        background: var(--sage);
        border-radius: 10px;
        border: 1px solid var(--border)
    }

    .wfs-num {
        font-size: 0.6rem
    }

    .wfs-icon {
        width: 36px;
        height: 36px;
        background: var(--white) !important
    }

    .wfs-icon svg {
        width: 14px;
        height: 14px
    }

    .wfs-label {
        font-size: 0.65rem;
        line-height: 1.3
    }

    .work-features {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 20px
    }

    .wf-feat {
        padding: 18px 14px
    }

    .wf-feat-icon {
        width: 36px;
        height: 36px
    }

    .wf-feat-title {
        font-size: 0.82rem
    }

    .wf-feat-desc {
        font-size: 0.74rem
    }

    .work-quote {
        padding: 12px 0 0;
        gap: 14px
    }

    .wq-bar {
        height: 36px
    }

    .work-quote p {
        font-size: 0.88rem
    }

    #testimonials {
        padding: 36px 0 28px
    }

    .testimonials-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 18px
    }

    .testimonials-copy {
        max-width: 100%
    }

    .testimonial-highlight {
        display: none !important
    }

    .testimonial-panel {
        grid-column: auto;
        width: 100%;
        margin: 0 -0px
    }

    .carousel-wrapper {
        gap: 16px
    }

    .carousel-window {
        overflow: hidden
    }

    .carousel-track {
        padding: 12px 8% 12px;
        gap: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch
    }

    .testimonial-card {
        flex: 0 0 84vw;
        max-width: 84vw;
        padding: 18px 16px 22px;
        border-radius: var(--radius);
        opacity: 0.35;
        transform: scale(0.92);
        filter: blur(2.5px);
        transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease
    }

    .testimonial-card.active {
        opacity: 1;
        transform: scale(1);
        filter: none;
        box-shadow: 0 14px 40px rgba(34, 37, 42, 0.10)
    }

    .tc-card-label {
        font-size: 0.7rem;
        padding: 5px 12px;
        margin-bottom: 12px
    }

    .tc-card-columns {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .tc-card-columns::before,
    .tc-card-columns::after {
        display: none !important
    }

    .tc-column {
        padding: 0
    }

    .tc-column-title {
        font-size: 0.72rem;
        margin-bottom: 10px
    }

    .tc-list li {
        font-size: 0.8rem;
        padding-left: 22px
    }

    .tc-list li.negative::before,
    .tc-list li.positive::before {
        width: 14px;
        height: 14px;
        top: 2px
    }

    .tc-quote {
        font-size: 0.85rem;
        line-height: 1.55;
        margin-bottom: 14px
    }

    .tc-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

    .tc-author {
        gap: 10px
    }

    .tc-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.85rem
    }

    .tc-name {
        font-size: 0.92rem
    }

    .tc-role {
        font-size: 0.78rem
    }

    .tc-badges {
        margin-left: 0;
        gap: 6px
    }

    .tc-badge {
        font-size: 0.72rem;
        padding: 4px 10px
    }

    .carousel-controls {
        gap: 12px
    }

    .carousel-nav {
        width: 38px;
        height: 38px;
        font-size: 0.9rem
    }

    #team {
        padding: 36px 18px 28px
    }

    .team-header {
        margin-bottom: 18px
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }

    .team-card-top {
        padding: 16px 14px 12px
    }

    .team-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        margin-bottom: 10px
    }

    .team-name {
        font-size: 0.88rem
    }

    .team-role {
        font-size: 0.68rem
    }

    .team-card-body {
        padding: 12px 14px 14px
    }

    .team-dept {
        font-size: 0.62rem;
        letter-spacing: 0.06em;
        margin-bottom: 6px
    }

    .team-bio {
        font-size: 0.76rem;
        line-height: 1.5
    }

    .team-skills {
        gap: 5px;
        margin-top: 10px
    }

    .skill-pill {
        font-size: 0.63rem;
        padding: 2px 8px
    }

    #more-projects {
        padding: 48px 18px 40px
    }

    #more-projects h2 {
        font-size: clamp(1.5rem, 6vw, 2rem)
    }

    #contact {
        padding: 0;
        min-height: auto
    }

    #cta-section {
        padding: 36px 18px 28px;
        overflow: hidden
    }

    #cta-section .inner {
        grid-template-columns: 1fr !important;
        gap: 24px;
        max-width: 100%;
        padding: 0 !important;
        width: 100%
    }

    .cta-left {
        width: 100%
    }

    #cta-section h2 {
        font-size: clamp(1.7rem, 7vw, 2.4rem)
    }

    #cta-section .section-sub {
        font-size: 0.88rem
    }

    .cta-perks-new {
        gap: 12px;
        margin-bottom: 20px
    }

    .cta-perks-new li strong {
        font-size: 0.88rem
    }

    .cta-perks-new li span {
        font-size: 0.8rem
    }

    .cta-metrics-card {
        flex-direction: column;
        gap: 12px;
        padding: 14px 16px
    }

    .cta-metrics-card .metric-item {
        gap: 10px
    }

    .cta-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 18px 16px;
        border-radius: 14px;
        gap: 10px;
        overflow: visible
    }

    .cta-card-header {
        margin-bottom: 4px;
        gap: 10px
    }

    .cta-card-header h4 {
        font-size: 1.05rem
    }

    .cta-card-header p {
        font-size: 0.75rem
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 10px;
        margin-bottom: 10px
    }

    .form-group {
        gap: 7px
    }

    .form-group label {
        font-size: 0.75rem
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
        font-size: 0.85rem
    }

    .form-group textarea {
        height: 100px
    }

    .cta-safety-alert {
        padding: 10px 12px;
        gap: 10px
    }

    .cta-safety-alert h5 {
        font-size: 0.78rem
    }

    .cta-safety-alert p {
        font-size: 0.72rem
    }

    .btn-submit {
        padding: 13px;
        font-size: 0.9rem;
        border-radius: 8px
    }

    .cta-whatsapp-footer {
        margin-top: 10px;
        padding-top: 12px
    }

    .cta-whatsapp-footer a {
        font-size: 0.82rem
    }

    footer {
        padding: 44px 18px 28px
    }

    .footer-inner {
        max-width: none
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding-bottom: 28px;
        margin-bottom: 20px
    }

    .footer-brand {
        grid-column: 1 / -1
    }

    .footer-brand .logo {
        font-size: 1.4rem;
        margin-bottom: 10px
    }

    .footer-desc {
        font-size: 0.8rem;
        margin-bottom: 16px
    }

    .footer-col h5 {
        font-size: 0.7rem;
        margin-bottom: 12px
    }

    .footer-col ul li a {
        font-size: 0.82rem
    }

    .footer-contact-list a {
        font-size: 0.8rem;
        word-break: break-all
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding-top: 20px
    }

    .footer-copy {
        font-size: 0.73rem
    }

    .footer-tagline {
        display: none
    }

    .footer-legal-links {
        font-size: 0.73rem;
        gap: 6px
    }
}

@media (max-width:480px) {
    .nav-inner {
        padding: 0 14px;
        height: 58px
    }

    .logo {
        font-size: 1.25rem
    }

    nav.nav-scrolled {
        top: 6px;
        left: 8px;
        right: 8px
    }

    #hero {
        padding: 80px 14px 16px;
        gap: 20px
    }

    #hero h1 {
        font-size: clamp(1.65rem, 9vw, 2.1rem)
    }

    .hero-sub {
        font-size: 0.88rem;
        margin-bottom: 18px
    }

    .hero-eyebrow {
        font-size: 0.65rem;
        padding: 6px 12px
    }

    .hero-right {
        display: none !important
    }

    .hero-services-strip {
        padding: 0 14px 20px
    }

    .hss-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px 0 18px
    }

    .hss-title {
        font-size: 0.82rem
    }

    .hss-desc {
        font-size: 0.72rem
    }

    .hss-stats-row {
        padding: 10px 0
    }

    .hss-stat {
        flex: 1 1 100%;
        border-left: none !important;
        padding-left: 0 !important
    }

    .hss-stat:nth-child(2n) {
        border-left: none;
        padding-left: 0
    }

    .about-shell {
        padding: 0 14px;
        gap: 20px
    }

    .about-right {
        grid-template-columns: 1fr
    }

    #results {
        padding: 32px 14px 20px
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .process-step {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 14px
    }

    .process-icon {
        flex-shrink: 0;
        margin-bottom: 0
    }

    #work {
        padding: 28px 14px 32px
    }

    .wf-card {
        padding: 14px 12px
    }

    .wfd-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px
    }

    .wf-step {
        padding: 6px 4px
    }

    .wfs-icon {
        width: 32px;
        height: 32px
    }

    .wfs-label {
        font-size: 0.6rem
    }

    .work-features {
        grid-template-columns: 1fr 1fr;
        gap: 2px
    }

    .wf-feat {
        padding: 14px 12px;
        gap: 6px
    }

    .wf-feat-icon {
        width: 32px;
        height: 32px
    }

    .wf-feat-title {
        font-size: 0.78rem
    }

    .wf-feat-desc {
        font-size: 0.7rem
    }

    #testimonials {
        padding: 28px 0 24px
    }

    .testimonials-grid {
        padding: 0 14px
    }

    .carousel-track {
        padding: 12px 5% 12px;
        gap: 12px
    }

    .testimonial-card {
        flex: 0 0 90vw;
        max-width: 90vw;
        padding: 16px 14px 18px
    }

    .tc-list li {
        font-size: 0.76rem
    }

    .tc-quote {
        font-size: 0.8rem
    }

    .tc-name {
        font-size: 0.85rem
    }

    .carousel-nav {
        width: 34px;
        height: 34px;
        font-size: 0.82rem
    }

    #team {
        padding: 28px 14px 24px
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .team-card {
        border-radius: var(--radius)
    }

    .team-card-top {
        padding: 14px 14px 10px
    }

    .team-card-body {
        padding: 10px 14px 14px
    }

    .team-bio {
        font-size: 0.78rem
    }

    #cta-section {
        padding: 28px 14px 24px
    }

    .cta-form {
        padding: 16px 14px;
        border-radius: 12px
    }

    .cta-card-header h4 {
        font-size: 0.98rem
    }

    #cta-section h2 {
        font-size: clamp(1.5rem, 8vw, 2rem)
    }

    .cta-perks-new li {
        gap: 10px
    }

    footer {
        padding: 36px 14px 24px
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 22px
    }

    .footer-col h5 {
        font-size: 0.68rem
    }

    .footer-col ul {
        gap: 8px
    }

    .footer-col ul li a {
        font-size: 0.8rem
    }

    .footer-contact-list li {
        align-items: flex-start
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 4px
    }

    .footer-bottom {
        gap: 8px
    }
}

@media (max-width:380px) {
    #hero h1 {
        font-size: 1.55rem
    }

    .about-shell {
        padding: 0 12px
    }

    #work {
        padding: 24px 12px 28px
    }

    #cta-section {
        padding: 24px 12px 20px
    }

    .cta-form {
        padding: 14px 12px
    }

    footer {
        padding: 32px 12px 20px
    }

    #testimonials .testimonials-grid {
        padding: 0 12px
    }

    #team {
        padding: 24px 12px 20px
    }

    .team-grid {
        gap: 8px
    }
}

@media (max-width:900px) {

    #hero,
    #about,
    #results,
    #work,
    #testimonials,
    #team,
    #contact,
    #more-projects {
        padding-left: revert;
        padding-right: revert
    }

    .about-shell {
        display: flex !important;
        flex-direction: column;
        padding: 0 24px
    }

    .about-right {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        padding: 0 !important
    }

    #cta-section .inner {
        grid-template-columns: 1fr !important
    }

    .form-row {
        grid-template-columns: 1fr !important
    }
}

.carousel-track {
    -ms-overflow-style: none;
    scrollbar-width: none
}

.carousel-track::-webkit-scrollbar {
    display: none
}

@media (max-width:768px) {
    .project-content-panel {
        width: 100vw;
        max-width: 100vw;
        padding: 56px 18px 32px
    }

    .project-content-panel .project-result-bar {
        flex-wrap: wrap;
        gap: 16px
    }

    .prb-item {
        flex: 1 1 calc(33% - 10px);
        min-width: 80px
    }
}

@media (max-width:480px) {
    .modal-box {
        padding: 28px 18px;
        border-radius: var(--radius)
    }

    .otp-input-digit {
        height: 42px;
        font-size: 1.1rem
    }
}

@media (max-width:768px) {
    .cta-whatsapp-footer {
        grid-column: auto
    }
}

@media (max-width:768px) {
    .hero-right {
        display: none !important
    }

    .hero-visual {
        display: none !important
    }

    .hv-card,
    .hv-ring,
    .hv-process-arcs,
    .hv-side-label,
    .hv-center {
        display: none !important
    }

    #hero {
        display: flex !important;
        flex-direction: column !important;
        padding: 96px 18px 20px !important;
        gap: 0 !important
    }

    .hero-left {
        width: 100% !important;
        order: 1 !important
    }

    #hero h1 {
        font-size: clamp(1.75rem, 7.5vw, 2.4rem) !important;
        line-height: 1.1 !important;
        letter-spacing: -0.025em !important
    }

    .hero-sub {
        font-size: 0.9rem !important;
        line-height: 1.65 !important;
        margin-bottom: 22px !important
    }

    .hero-eyebrow {
        font-size: 0.68rem !important;
        padding: 7px 14px !important;
        margin-bottom: 22px !important
    }

    .hero-ctas {
        flex-direction: column !important;
        gap: 10px !important
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-outline {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        display: flex !important
    }
}

@media (max-width:768px) {
    #work .work-top-right {
        display: none !important
    }

    .work-top {
        grid-template-columns: 1fr !important
    }

    #work-flows-track {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 12px 8% 20px !important;
        grid-template-columns: unset !important;
        width: 100% !important;
        box-sizing: border-box !important;
        -ms-overflow-style: none !important;
        scrollbar-width: none !important
    }

    #work-flows-track::-webkit-scrollbar {
        display: none !important
    }

    #work-flows-track .wf-card {
        flex: 0 0 84vw !important;
        max-width: 84vw !important;
        min-width: 0 !important;
        width: 84vw !important;
        scroll-snap-align: center !important;
        opacity: 0.38 !important;
        transform: scale(0.93) !important;
        transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease !important;
        box-shadow: none !important
    }

    #work-flows-track .wf-card.wf-card-active {
        opacity: 1 !important;
        transform: scale(1) !important;
        box-shadow: 0 12px 36px rgba(34, 37, 42, 0.1) !important
    }

    #work-flows-track .wf-card:first-child {
        opacity: 1 !important;
        transform: scale(1) !important
    }

    #work-flows-track .wf-card:not(:first-child):not(.wf-card-active) {
        opacity: 0.38 !important;
        transform: scale(0.93) !important
    }
}

@media (max-width:768px) {
    #cta-section {
        padding: 36px 16px 28px !important;
        overflow: hidden !important
    }

    #cta-section .inner {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important
    }

    .cta-form {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 16px !important;
        border-radius: 14px !important;
        gap: 10px !important;
        overflow: hidden !important;
        min-width: 0 !important
    }

    .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin-bottom: 10px !important;
        width: 100% !important
    }

    .form-group {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important
    }

    .form-group label {
        font-size: 0.75rem !important;
        margin-bottom: 4px !important
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 0.85rem !important;
        padding: 10px 12px !important;
        min-width: 0 !important
    }

    .form-group textarea {
        height: 90px !important
    }

    .iti {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important
    }

    .iti__flag-container {
        max-width: 80px
    }

    .cta-card-header {
        gap: 10px !important;
        margin-bottom: 4px !important;
        flex-wrap: wrap !important
    }

    .cta-card-header h4 {
        font-size: 0.98rem !important
    }

    .cta-card-header p {
        font-size: 0.73rem !important
    }

    .cta-safety-alert {
        padding: 10px 12px !important;
        gap: 10px !important;
        flex-direction: row !important
    }

    .cta-safety-alert h5 {
        font-size: 0.76rem !important
    }

    .cta-safety-alert p {
        font-size: 0.7rem !important
    }

    .btn-submit {
        padding: 12px !important;
        font-size: 0.88rem !important;
        border-radius: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important
    }

    .cta-perks-new {
        gap: 10px !important;
        margin-bottom: 18px !important
    }

    .cta-perks-new li {
        gap: 10px !important;
        align-items: flex-start !important
    }

    .cta-perks-new li strong {
        font-size: 0.84rem !important
    }

    .cta-perks-new li span {
        font-size: 0.77rem !important
    }

    .perk-icon-box {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        flex-shrink: 0 !important
    }

    .cta-metrics-card {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 12px 14px !important;
        border-radius: 10px !important
    }

    .metric-item {
        gap: 10px !important
    }

    .metric-title {
        font-size: 0.82rem !important
    }

    .metric-desc {
        font-size: 0.72rem !important
    }

    .cta-whatsapp-footer {
        margin-top: 10px !important;
        padding-top: 12px !important;
        grid-column: auto !important
    }

    .cta-whatsapp-footer a {
        font-size: 0.8rem !important
    }
}

@media (max-width:768px) {
    .modal-overlay {
        align-items: flex-end !important;
        padding: 0 !important
    }

    .modal-box {
        width: 100vw !important;
        max-width: 100vw !important;
        max-height: 92vh !important;
        border-radius: 20px 20px 0 0 !important;
        padding: 24px 18px 32px !important;
        overflow-y: auto !important;
        transform: translateY(40px) !important;
        box-sizing: border-box !important
    }

    .modal-overlay.active .modal-box {
        transform: translateY(0) !important
    }

    .modal-header {
        margin-bottom: 18px !important
    }

    .modal-box .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important
    }

    .modal-box .form-group input,
    .modal-box .form-group select,
    .modal-box .form-group textarea {
        font-size: 0.85rem !important;
        padding: 10px 12px !important;
        box-sizing: border-box !important;
        width: 100% !important
    }

    .compact-otp-box {
        width: 100vw !important;
        max-width: 100vw !important;
        border-radius: 20px 20px 0 0 !important;
        padding: 24px 18px 32px !important
    }

    .otp-inputs-row {
        gap: 8px !important
    }

    .otp-input-digit {
        height: 44px !important;
        width: 40px !important;
        font-size: 1.1rem !important
    }
}

@media (max-width:768px) {
    .faq-page-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 28px !important;
        padding: 100px 18px 48px !important;
        max-width: none !important
    }

    .faq-sidebar {
        gap: 20px !important
    }

    .faq-main-title {
        font-size: clamp(1.7rem, 7vw, 2.2rem) !important
    }

    .faq-sidebar-sub {
        max-width: 100% !important
    }

    .faq-sidebar-features {
        gap: 14px !important
    }

    .faq-sidebar-highlight {
        padding: 16px !important
    }

    .faq-sidebar-highlight {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 14px !important
    }

    .faq-sidebar-features li {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 14px !important
    }

    .faq-acc-header {
        padding: 14px 16px !important;
        align-items: flex-start !important;
        min-width: 0 !important
    }

    .faq-acc-num {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        flex-shrink: 0
    }

    .faq-acc-q {
        font-size: 0.88rem !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        overflow-wrap: anywhere !important
    }

    .faq-acc-icon {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        max-width: 28px !important;
        flex-shrink: 0 !important;
        overflow: hidden !important;
        position: relative !important
    }

    .faq-acc-icon svg {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important
    }

    .faq-acc-item.open .faq-acc-body {
        padding: 0 16px 16px !important;
        font-size: 0.84rem !important
    }

    #faq-view #support-section {
        padding: 56px 18px 36px !important;
        scroll-margin-top: 96px !important
    }

    #support-section {
        padding: 56px 18px 36px !important
    }

    .faq-support-cards {
        grid-template-columns: 1fr !important;
        gap: 14px !important
    }

    .faq-sc {
        flex-direction: row !important;
        gap: 14px !important;
        padding: 16px !important
    }

    .faq-sc-link {
        font-size: 0.8rem !important;
        word-break: break-all !important
    }
}

@media (max-width:768px) {
    .pa-header {
        padding: 100px 18px 28px !important
    }

    .pa-header-inner {
        flex-direction: column !important;
        gap: 24px !important
    }

    .pa-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem) !important
    }

    .pa-subtitle {
        font-size: 0.88rem !important
    }

    .pa-stats-box {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1px !important;
        width: 100% !important;
        max-width: 100% !important;
        flex-wrap: unset !important;
        padding: 0 !important;
        background: var(--border) !important;
        overflow: hidden !important
    }

    .pa-stat-item {
        flex: unset !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        min-width: 0 !important;
        width: auto !important;
        background: var(--white) !important;
        border: none !important;
        padding: 14px 10px !important
    }

    .pa-stat-divider {
        display: none !important
    }

    .pa-stat-num {
        font-size: 1.2rem !important
    }

    .pa-stat-icon svg {
        width: 22px !important;
        height: 22px !important;
        max-width: 22px !important;
        max-height: 22px !important
    }

    .pa-filter-bar {
        padding: 0 18px !important
    }

    .pa-filter-inner {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: flex-start !important
    }

    .pa-filters {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        width: 100% !important
    }

    .pa-filter-btn {
        font-size: 0.72rem !important;
        padding: 6px 12px !important
    }

    .pa-featured-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important
    }

    .pa-fc {
        width: 100% !important
    }

    .pa-fc-body {
        flex-direction: column !important
    }

    .pa-fc-visual {
        display: none !important
    }

    .pa-fc-title {
        font-size: clamp(1.5rem, 6vw, 2rem) !important
    }

    .pa-fc-desc {
        font-size: 0.85rem !important
    }

    .pa-systems-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        padding: 0 18px !important
    }

    .pa-process-inner {
        flex-direction: column !important;
        gap: 24px !important;
        padding: 28px 18px !important
    }

    .pa-process-steps {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important
    }

    .pa-process-step {
        gap: 12px !important
    }

    .pa-ps-icon {
        flex-shrink: 0 !important;
        margin-bottom: 0 !important;
        overflow: hidden !important
    }

    .pa-ps-icon svg {
        width: 18px !important;
        height: 18px !important;
        max-width: 18px !important;
        max-height: 18px !important
    }

    .pa-section-label svg {
        width: 15px !important;
        height: 15px !important;
        max-width: 15px !important;
        max-height: 15px !important
    }

    .pa-sort-chevron {
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important
    }

    .pa-sort-chevron svg {
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important
    }

    .pa-process-arrow {
        display: none !important
    }

    .pa-section {
        padding: 0 18px !important
    }

    .pa-section-inner {
        padding: 20px 0 !important
    }

    .page-cta {
        padding: 36px 18px !important
    }

    .page-cta h2 {
        font-size: clamp(1.4rem, 6vw, 2rem) !important
    }

    .project-content-panel {
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 60px 18px 32px !important
    }
}

.legacy-section {
    display: none !important
}

@media (max-width:768px) {
    footer {
        padding: 44px 18px 28px !important
    }

    .footer-top {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px !important;
        padding-bottom: 24px !important;
        margin-bottom: 18px !important
    }

    .footer-brand {
        grid-column: 1 / -1 !important
    }

    .footer-brand .logo {
        font-size: 1.3rem !important
    }

    .footer-bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important
    }

    .footer-tagline {
        display: none !important
    }

    .footer-copy,
    .footer-legal-links {
        font-size: 0.72rem !important
    }

    .footer-contact-list a {
        word-break: break-all !important
    }
}

@media (max-width:480px) {
    footer {
        padding: 36px 14px 24px !important
    }

    .footer-top {
        grid-template-columns: 1fr !important
    }

    .footer-contact-list a {
        font-size: 0.78rem !important
    }
}

@media (max-width:768px) {
    .mobile-nav-panel-inner {
        display: flex;
        flex-direction: column;
        gap: 0
    }

    .nav-back {
        font-size: 0.9rem !important;
        padding: 8px 12px !important
    }
}

@media (max-width:480px) {
    .nav-inner {
        padding: 0 14px !important;
        height: 58px !important
    }

    .logo {
        font-size: 1.2rem !important
    }

    #hero {
        padding: 82px 14px 16px !important
    }

    #hero h1 {
        font-size: clamp(1.6rem, 9vw, 2rem) !important
    }

    .hero-services-strip {
        padding: 0 14px 20px !important
    }

    .hss-row {
        grid-template-columns: 1fr !important
    }

    #work {
        padding: 28px 0 32px !important
    }

    #work-flows-track {
        padding: 10px 6% 16px !important
    }

    #work-flows-track .wf-card {
        flex: 0 0 88vw !important;
        max-width: 88vw !important;
        width: 88vw !important
    }

    .about-shell {
        padding: 0 14px !important
    }

    #team {
        padding: 28px 14px 24px !important
    }

    .team-grid {
        grid-template-columns: 1fr !important
    }

    #cta-section {
        padding: 28px 14px 24px !important
    }

    .cta-form {
        padding: 14px !important
    }

    .faq-page-wrap {
        padding: 90px 14px 40px !important
    }

    .pa-header {
        padding: 90px 14px 24px !important
    }
}

#faq-view,
#projects-view {
    background: var(--sage);
    min-height: 100vh;
    position: relative;
    z-index: 1
}

@media (max-width:768px) {
    #nav-home-links {
        display: none !important
    }
}

@media (max-width:768px) {
    .pa-header-inner {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        gap: 20px !important
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    min-width: 0
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%
}

img,
picture,
video,
canvas {
    display: block;
    max-width: 100%;
    height: auto
}

input,
textarea,
select,
button {
    max-width: 100%;
    font-family: inherit
}

@media (max-width:1280px) {
    .nav-inner {
        padding: 0 32px
    }

    .logo {
        font-size: clamp(1.2rem, 1.8vw, 1.45rem) !important
    }

    .nav-links {
        gap: clamp(6px, 1vw, 12px) !important
    }

    .nav-links a {
        font-size: clamp(0.8rem, 1.2vw, 0.92rem) !important;
        padding: 0 clamp(4px, 0.8vw, 12px) !important
    }

    .nav-cta {
        padding: clamp(8px, 1.1vw, 12px) clamp(12px, 1.5vw, 18px) !important;
        font-size: clamp(0.8rem, 1.1vw, 0.88rem) !important
    }

    #hero {
        padding: 140px 40px 0;
        column-gap: 48px
    }

    .hero-visual {
        width: 480px !important;
        height: 480px !important;
        transform: scale(0.95);
        transform-origin: center center
    }

    .hero-services-strip {
        padding: 0 40px 40px
    }

    .about-shell {
        padding: 0 40px
    }

    section {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media (max-width:1100px) {
    .hero-visual {
        transform: scale(0.88) !important
    }
}

@media (max-width:1024px) {
    #hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 118px 28px 40px;
        max-width: none
    }

    #hero h1 {
        font-size: clamp(2.2rem, 4vw, 3rem)
    }

    .hero-right {
        justify-content: center;
        top: 0
    }

    .hero-visual {
        width: 480px !important;
        height: 480px !important;
        transform: scale(0.8) !important;
        transform-origin: center center
    }

    .hero-services-strip {
        padding: 0 28px 40px
    }

    .hss-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 24px 0 32px
    }

    .hss-badge {
        display: none
    }

    .hss-stats-row {
        flex-wrap: wrap;
        height: auto;
        padding: 14px 20px;
        gap: 0
    }

    .hss-stat {
        flex: 1 1 calc(50% - 1px);
        justify-content: flex-start;
        gap: 12px;
        padding: 10px 0
    }

    .hss-stat-sep {
        display: none
    }

    #about:not([style*="display:none"]):not([style*="display:none"]):not(.home-section-hidden) {
        display: block !important;
        padding-top: 80px !important;
        max-width: none
    }

    .about-shell {
        display: flex !important;
        flex-direction: column !important;
        gap: 28px;
        padding: 0 28px;
        max-width: none;
        width: 100%
    }

    .about-copy {
        width: 100%;
        flex: none
    }

    .about-right {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        flex: none;
        width: 100%;
        padding: 0 !important;
        gap: 14px
    }

    .about-card:first-child {
        grid-column: 1/-1
    }

    #results {
        padding: 48px 28px 32px
    }

    .process-steps {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 18px !important
    }

    .process-arrow {
        display: none !important
    }

    #work {
        padding: 48px 28px 52px
    }

    .work-top {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 28px
    }

    .work-top-right {
        display: none !important
    }

    .work-flows {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .work-features {
        grid-template-columns: repeat(4, 1fr)
    }

    #team {
        padding: 48px 28px 40px
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    #testimonials {
        padding: 56px 28px 40px
    }

    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .testimonial-highlight {
        display: none !important
    }

    .tc-card-columns {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .tc-card-columns::before,
    .tc-card-columns::after {
        display: none !important
    }

    .tc-column {
        padding: 0
    }

    .tc-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

    .tc-badges {
        margin-left: 0
    }

    #contact {
        padding: 0;
        min-height: auto
    }

    #cta-section {
        padding: 48px 28px 40px
    }

    #cta-section .inner {
        grid-template-columns: 1fr !important;
        gap: 32px;
        padding: 0 !important
    }

    .cta-form {
        padding: 22px;
        width: 100%;
        max-width: 100%
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 14px
    }

    .cta-metrics-card {
        flex-wrap: wrap;
        gap: 14px
    }

    footer {
        padding: 56px 28px 32px
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .footer-tagline {
        display: none
    }

    .project-content-panel {
        width: 78vw
    }

    .pa-header {
        padding: 96px 28px 36px
    }

    .pa-filter-bar {
        padding: 0 28px
    }

    .pa-section {
        padding: 36px 28px
    }

    .pa-process-section {
        padding: 48px 28px
    }

    .pa-featured-grid {
        grid-template-columns: 1fr
    }

    .pa-fc-body {
        flex-direction: column
    }

    .pa-fc-visual {
        display: none
    }

    .pa-systems-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px
    }

    .pa-process-inner {
        flex-direction: column;
        gap: 28px
    }

    .pa-process-left {
        width: 100%
    }

    .pa-process-steps {
        gap: 10px
    }
}

@media (max-width:991px) {
    .nav-links {
        display: none !important
    }

    .nav-cta {
        display: none !important
    }

    .nav-hamburger {
        display: flex !important
    }

    .mobile-nav-panel {
        display: block !important
    }

    .nav-inner {
        padding: 0 24px;
        height: 68px
    }

    nav.nav-scrolled {
        top: 8px;
        left: 10px;
        right: 10px;
        border-radius: 14px
    }
}

@media (max-width:900px) {
    .hero-visual {
        width: 480px !important;
        height: 480px !important;
        transform: scale(0.7) !important;
        transform-origin: center center
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important
    }

    .pa-filter-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

    .pa-sort-wrap {
        align-self: flex-end
    }

    .pa-systems-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .faq-page-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 100px 28px 60px
    }

    .faq-sidebar-sub {
        max-width: 100%
    }

    .faq-support-cards {
        grid-template-columns: 1fr
    }

    #support-section {
        padding: 56px 28px
    }
}

@media (max-width:768px) {
    .nav-inner {
        padding: 0 18px;
        height: 64px
    }

    .nav-links {
        display: none !important
    }

    .nav-cta {
        display: none !important
    }

    .nav-hamburger {
        display: flex !important
    }

    .mobile-nav-panel {
        display: block
    }

    nav.nav-scrolled {
        top: 8px;
        left: 10px;
        right: 10px;
        border-radius: 14px
    }

    #hero:not(.home-section-hidden):not([style*="display:none"]):not([style*="display:none"]) {
        display: flex !important;
        flex-direction: column !important;
        padding: 96px 18px 24px !important;
        gap: 0 !important;
        max-width: none
    }

    .hero-left {
        order: 1;
        width: 100%
    }

    .hero-right {
        order: 2;
        display: flex !important;
        justify-content: center;
        width: 100%;
        position: static !important;
        top: 0 !important;
        margin-top: 24px
    }

    .hero-visual {
        width: 100% !important;
        max-width: 320px !important;
        height: auto !important;
        min-height: 120px !important;
        position: relative !important;
        display: flex !important;
        justify-content: center
    }

    .hv-ring,
    .hv-process-arcs,
    .hv-side-label,
    .hv-center {
        display: none !important
    }

    .hv-card-2,
    .hv-card-3 {
        display: none !important
    }

    .hv-card-1 {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: 290px !important;
        transform: none !important;
        margin: 0 auto;
        min-height: auto
    }

    #hero h1 {
        font-size: clamp(1.8rem, 7.5vw, 2.5rem) !important;
        line-height: 1.1 !important
    }

    .hero-sub {
        font-size: .92rem !important;
        line-height: 1.65 !important;
        margin-bottom: 20px !important
    }

    .hero-eyebrow {
        font-size: .68rem !important;
        padding: 6px 13px !important;
        margin-bottom: 20px !important
    }

    .hero-ctas {
        flex-direction: column !important;
        gap: 10px !important
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-outline {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        display: flex !important
    }

    .hero-services-strip {
        padding: 0 18px 28px !important
    }

    .hss-inner {
        padding: 0 !important;
        max-width: none !important
    }

    .hss-divider {
        width: 100% !important
    }

    .hss-row {
        grid-template-columns: 1fr 1fr !important;
        gap: 14px !important;
        padding: 18px 0 22px !important
    }

    .hss-badge {
        display: none !important
    }

    .hss-service {
        padding-right: 0 !important;
        gap: 10px !important
    }

    .hss-icon {
        width: 36px !important;
        height: 36px !important
    }

    .hss-icon svg {
        width: 15px !important;
        height: 15px !important
    }

    .hss-title {
        font-size: .85rem !important;
        margin-bottom: 6px !important
    }

    .hss-desc {
        font-size: .75rem !important
    }

    .hss-stats-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        height: auto !important;
        padding: 14px 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        gap: 0 !important
    }

    .hss-stat {
        flex-direction: row !important;
        padding: 10px 8px !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        border-bottom: 1px solid var(--border) !important;
        text-align: left !important
    }

    .hss-stat:nth-child(odd) {
        border-right: 1px solid var(--border)
    }

    .hss-stat:nth-last-child(-n+2) {
        border-bottom: none !important
    }

    .hss-stat-sep {
        display: none !important
    }

    .hss-stat-num {
        font-size: 1.1rem !important;
        display: block
    }

    .hss-stat-lbl {
        font-size: .68rem !important;
        display: block
    }

    .hss-stat-icon {
        width: 28px !important;
        height: 28px !important
    }

    .hss-stat-icon svg {
        width: 15px !important;
        height: 15px !important
    }

    #about:not([style*="display:none"]):not([style*="display:none"]):not(.home-section-hidden) {
        display: block !important;
        padding: 40px 0 20px !important;
        max-width: none !important
    }

    .about-shell {
        display: flex !important;
        flex-direction: column !important;
        gap: 22px !important;
        padding: 0 18px !important;
        max-width: none !important;
        width: 100% !important
    }

    .about-copy {
        width: 100% !important;
        flex: none !important;
        text-align: center
    }

    .about-copy .section-tag {
        justify-content: center
    }

    .about-copy h2 {
        margin-left: auto;
        margin-right: auto
    }

    .about-rule {
        margin-left: auto;
        margin-right: auto
    }

    .about-copy .section-sub {
        margin: 0 auto
    }

    .about-right {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        flex: none !important;
        width: 100% !important;
        padding: 0 !important
    }

    .about-card:first-child {
        grid-column: auto !important
    }

    .about-card {
        padding: 16px 18px !important;
        min-height: auto !important
    }

    .about-card-story {
        padding: 20px 18px !important;
        min-height: auto !important
    }

    #results {
        padding: 40px 18px 28px !important
    }

    .results-inner {
        max-width: none !important;
        padding: 0 !important
    }

    .process-panel {
        padding: 22px 16px !important
    }

    .process-heading {
        margin-bottom: 22px !important
    }

    .process-steps {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important
    }

    .process-arrow {
        display: none !important
    }

    .process-step {
        position: relative;
        display: grid !important;
        grid-template-columns: 50px 1fr !important;
        column-gap: 12px !important;
        text-align: left !important;
        padding-bottom: 14px
    }

    .process-icon {
        grid-row: 1/span 2;
        margin-bottom: 0 !important;
        width: 50px !important;
        height: 50px !important
    }

    .process-step h3 {
        align-self: end;
        margin: 3px 0 6px;
        font-size: .9rem
    }

    .process-step p {
        max-width: none !important;
        margin: 0 !important
    }

    #work {
        padding: 36px 18px 40px !important
    }

    .work-top {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-bottom: 20px !important
    }

    .work-top-right {
        display: none !important
    }

    .work-flows {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 8px 10% !important;
        grid-template-columns: unset !important;
        scrollbar-width: none !important;
        margin-bottom: 28px !important
    }

    .work-flows::-webkit-scrollbar {
        display: none !important
    }

    .work-flows .wf-card {
        flex: 0 0 84vw !important;
        width: 84vw !important;
        min-width: 0 !important;
        scroll-snap-align: center !important;
        opacity: .38 !important;
        filter: blur(2px) !important;
        transform: scale(.93) !important;
        transition: opacity .4s ease, filter .4s ease, transform .4s ease, box-shadow .4s ease !important
    }

    .work-flows .wf-card.wf-card-active,
    .work-flows .wf-card:first-child {
        opacity: 1 !important;
        filter: none !important;
        transform: scale(1) !important;
        box-shadow: 0 12px 36px rgba(34, 37, 42, .1) !important
    }

    .work-flows .wf-card:not(:first-child):not(.wf-card-active) {
        opacity: .38 !important;
        filter: blur(2px) !important;
        transform: scale(.93) !important
    }

    .wf-diagram {
        overflow: visible !important
    }

    .wfd-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        align-items: start !important
    }

    .wfd-bottom .wf-step:nth-child(1) {
        order: 4 !important
    }

    .wfd-bottom .wf-step:nth-child(3) {
        order: 3 !important
    }

    .wfd-bottom .wf-step:nth-child(5) {
        order: 2 !important
    }

    .wfd-bottom .wf-step:nth-child(7) {
        order: 1 !important
    }

    .wfd-arrow {
        display: none !important
    }

    .wf-step {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 8px 6px !important;
        background: var(--sage) !important;
        border: 1px solid var(--border) !important;
        border-radius: 10px !important;
        text-align: center !important
    }

    .wfs-icon {
        width: 36px !important;
        height: 36px !important;
        background: var(--white) !important
    }

    .wfs-icon svg {
        width: 14px !important;
        height: 14px !important
    }

    .wfs-label {
        font-size: .63rem !important;
        line-height: 1.3 !important
    }

    .wf-label-btn {
        font-size: .72rem !important;
        padding: 5px 12px !important;
        margin-bottom: 12px !important
    }

    .work-features {
        grid-template-columns: 1fr 1fr !important;
        margin-bottom: 20px !important
    }

    .wf-feat {
        padding: 16px 12px !important
    }

    .wf-feat-icon {
        width: 34px !important;
        height: 34px !important
    }

    .wf-feat-title {
        font-size: .82rem !important
    }

    .wf-feat-desc {
        font-size: .72rem !important
    }

    .work-quote {
        padding: 10px 0 0 !important;
        gap: 12px !important
    }

    .wq-bar {
        height: 34px !important
    }

    .work-quote p {
        font-size: .86rem !important
    }

    #testimonials {
        padding: 36px 0 28px !important
    }

    .testimonials-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 18px !important
    }

    .testimonials-copy {
        max-width: 100% !important
    }

    .testimonial-highlight {
        display: none !important
    }

    .testimonial-panel {
        grid-column: auto !important;
        width: 100% !important
    }

    .carousel-track {
        padding: 12px 8% 12px !important;
        gap: 16px !important
    }

    .testimonial-card {
        flex: 0 0 84vw !important;
        max-width: 84vw !important;
        padding: 18px 16px 22px !important;
        border-radius: var(--radius) !important;
        opacity: .35 !important;
        transform: scale(.92) !important;
        filter: blur(2.5px) !important;
        transition: opacity .45s ease, transform .45s ease, filter .45s ease, box-shadow .45s ease !important
    }

    .testimonial-card.active {
        opacity: 1 !important;
        transform: scale(1) !important;
        filter: none !important;
        box-shadow: 0 14px 40px rgba(34, 37, 42, .1) !important
    }

    .tc-card-label {
        font-size: .7rem !important;
        padding: 5px 12px !important;
        margin-bottom: 12px !important
    }

    .tc-card-columns {
        grid-template-columns: 1fr !important;
        gap: 14px !important
    }

    .tc-card-columns::before,
    .tc-card-columns::after {
        display: none !important
    }

    .tc-column {
        padding: 0 !important
    }

    .tc-column-title {
        font-size: .72rem !important;
        margin-bottom: 10px !important
    }

    .tc-list li {
        font-size: .8rem !important;
        padding-left: 22px !important
    }

    .tc-quote {
        font-size: .85rem !important;
        line-height: 1.55 !important;
        margin-bottom: 14px !important
    }

    .tc-bottom-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important
    }

    .tc-author {
        gap: 10px !important
    }

    .tc-avatar {
        width: 36px !important;
        height: 36px !important;
        font-size: .85rem !important
    }

    .tc-name {
        font-size: .92rem !important
    }

    .tc-role {
        font-size: .78rem !important
    }

    .tc-badges {
        margin-left: 0 !important;
        gap: 6px !important
    }

    .tc-badge {
        font-size: .72rem !important;
        padding: 4px 10px !important
    }

    .carousel-nav {
        width: 38px !important;
        height: 38px !important;
        font-size: .88rem !important
    }

    #team {
        padding: 36px 18px 28px !important
    }

    .team-header {
        margin-bottom: 16px !important
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important
    }

    .team-card-top {
        padding: 14px 14px 12px !important
    }

    .team-avatar {
        width: 40px !important;
        height: 40px !important;
        font-size: .95rem !important;
        margin-bottom: 10px !important
    }

    .team-name {
        font-size: .88rem !important
    }

    .team-role {
        font-size: .68rem !important
    }

    .team-card-body {
        padding: 12px 14px 14px !important
    }

    .team-dept {
        font-size: .62rem !important;
        margin-bottom: 6px !important
    }

    .team-bio {
        font-size: .76rem !important;
        line-height: 1.5 !important
    }

    .skill-pill {
        font-size: .63rem !important;
        padding: 2px 8px !important
    }

    #more-projects {
        padding: 44px 18px 36px !important
    }

    #more-projects h2 {
        font-size: clamp(1.5rem, 6vw, 2rem) !important
    }

    #contact {
        padding: 0 !important;
        min-height: auto !important
    }

    #cta-section {
        padding: 36px 18px 28px !important;
        overflow: hidden !important
    }

    #cta-section .inner {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important
    }

    .cta-left {
        width: 100% !important
    }

    #cta-section h2 {
        font-size: clamp(1.7rem, 7vw, 2.4rem) !important
    }

    #cta-section .section-sub {
        font-size: .88rem !important
    }

    .cta-perks-new {
        gap: 12px !important;
        margin-bottom: 18px !important
    }

    .cta-perks-new li {
        gap: 10px !important;
        align-items: flex-start !important
    }

    .cta-perks-new li strong {
        font-size: .86rem !important
    }

    .cta-perks-new li span {
        font-size: .78rem !important
    }

    .perk-icon-box {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        flex-shrink: 0 !important
    }

    .cta-metrics-card {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 12px 14px !important
    }

    .cta-form {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 16px !important;
        border-radius: 14px !important;
        gap: 10px !important;
        overflow: hidden !important;
        min-width: 0 !important
    }

    .cta-card-header {
        gap: 10px !important;
        margin-bottom: 4px !important;
        flex-wrap: wrap !important
    }

    .cta-card-header h4 {
        font-size: 1rem !important
    }

    .cta-card-header p {
        font-size: .74rem !important
    }

    .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin-bottom: 10px !important;
        width: 100% !important
    }

    .form-group {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important
    }

    .form-group label {
        font-size: .75rem !important
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: .85rem !important;
        padding: 10px 12px !important
    }

    .form-group textarea {
        height: 96px !important
    }

    .iti {
        width: 100% !important;
        max-width: 100% !important
    }

    .cta-safety-alert {
        padding: 10px 12px !important;
        gap: 10px !important
    }

    .cta-safety-alert h5 {
        font-size: .76rem !important
    }

    .cta-safety-alert p {
        font-size: .7rem !important
    }

    .btn-submit {
        padding: 12px !important;
        font-size: .88rem !important;
        width: 100% !important
    }

    .cta-whatsapp-footer {
        margin-top: 10px !important;
        padding-top: 12px !important;
        grid-column: auto !important
    }

    .cta-whatsapp-footer a {
        font-size: .8rem !important
    }

    .modal-overlay {
        align-items: flex-end !important
    }

    .modal-box {
        width: 100vw !important;
        max-width: 100vw !important;
        max-height: 92vh !important;
        border-radius: 20px 20px 0 0 !important;
        padding: 24px 18px 32px !important;
        overflow-y: auto !important;
        transform: translateY(40px) !important;
        box-sizing: border-box !important
    }

    .modal-overlay.active .modal-box {
        transform: translateY(0) !important
    }

    .modal-header {
        margin-bottom: 16px !important
    }

    .modal-box .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important
    }

    .compact-otp-box {
        width: 100vw !important;
        max-width: 100vw !important;
        border-radius: 20px 20px 0 0 !important;
        padding: 24px 18px 32px !important
    }

    .otp-inputs-row {
        gap: 8px !important
    }

    .otp-input-digit {
        height: 44px !important;
        font-size: 1.1rem !important
    }

    footer {
        padding: 44px 18px 28px !important
    }

    .footer-inner {
        max-width: none !important
    }

    .footer-top {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px !important;
        padding-bottom: 24px !important
    }

    .footer-brand {
        grid-column: 1/-1 !important
    }

    .footer-brand .logo {
        font-size: 1.35rem !important;
        margin-bottom: 10px !important
    }

    .footer-desc {
        font-size: .8rem !important;
        margin-bottom: 14px !important
    }

    .footer-col h5 {
        font-size: .7rem !important;
        margin-bottom: 10px !important
    }

    .footer-col ul li a {
        font-size: .82rem !important
    }

    .footer-contact-list a {
        font-size: .8rem !important;
        word-break: break-all !important
    }

    .footer-bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
        padding-top: 18px !important
    }

    .footer-tagline {
        display: none !important
    }

    .footer-copy,
    .footer-legal-links {
        font-size: .72rem !important
    }

    .project-content-panel {
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 56px 18px 32px !important
    }

    .project-content-panel .project-result-bar {
        flex-wrap: wrap;
        gap: 14px
    }

    .prb-item {
        flex: 1 1 calc(33% - 10px);
        min-width: 70px
    }

    .faq-page-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        padding: 100px 18px 48px !important;
        max-width: none !important
    }

    .faq-main-title {
        font-size: clamp(1.7rem, 7vw, 2.2rem) !important
    }

    .faq-sidebar-sub {
        max-width: 100% !important
    }

    .faq-acc-header {
        padding: 14px 16px !important
    }

    .faq-acc-q {
        font-size: .88rem !important
    }

    .faq-acc-item.open .faq-acc-body {
        padding: 0 16px 16px !important
    }

    #support-section {
        padding: 36px 18px !important
    }

    .faq-support-cards {
        grid-template-columns: 1fr !important;
        gap: 12px !important
    }

    .faq-sc {
        flex-direction: row !important;
        gap: 14px !important;
        padding: 16px !important
    }

    .pa-header {
        padding: 96px 18px 28px !important
    }

    .pa-header-inner {
        flex-direction: column !important;
        gap: 24px !important
    }

    .pa-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem) !important
    }

    .pa-subtitle {
        font-size: .88rem !important
    }

    .pa-stat-divider {
        display: none !important
    }

    .pa-stat-num {
        font-size: 1.2rem !important
    }

    .pa-filter-bar {
        padding: 0 18px !important
    }

    .pa-filter-inner {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: flex-start !important
    }

    .pa-filters {
        flex-wrap: wrap !important;
        gap: 6px !important;
        width: 100% !important
    }

    .pa-filter-btn {
        font-size: .72rem !important;
        padding: 6px 12px !important
    }

    .pa-featured-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important
    }

    .pa-fc {
        width: 100% !important
    }

    .pa-fc-body {
        flex-direction: column !important
    }

    .pa-fc-visual {
        display: none !important
    }

    .pa-fc-title {
        font-size: clamp(1.4rem, 6vw, 1.9rem) !important
    }

    .pa-fc-desc {
        font-size: .85rem !important
    }

    .pa-section {
        padding: 28px 18px !important
    }

    .pa-section-inner {
        padding: 0 !important
    }

    .pa-systems-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important
    }

    .pa-process-section {
        padding: 36px 18px !important
    }

    .pa-process-inner {
        flex-direction: column !important;
        gap: 20px !important
    }

    .pa-process-left {
        width: 100% !important
    }

    .pa-process-arrow {
        display: none !important
    }

    .page-cta {
        padding: 40px 18px !important
    }

    .page-cta h2 {
        font-size: clamp(1.4rem, 6vw, 2rem) !important
    }
}

@media (max-width:600px) {
    .pa-systems-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important
    }
}

@media (max-width:480px) {
    .nav-inner {
        padding: 0 14px !important;
        height: 58px !important
    }

    .logo {
        font-size: 1.22rem !important
    }

    nav.nav-scrolled {
        top: 6px !important;
        left: 8px !important;
        right: 8px !important;
        border-radius: 14px !important
    }

    #hero {
        padding: 80px 14px 16px !important;
        gap: 0 !important
    }

    .hero-right {
        display: none !important
    }

    #hero h1 {
        font-size: clamp(1.65rem, 9vw, 2.1rem) !important
    }

    .hero-sub {
        font-size: .88rem !important;
        margin-bottom: 18px !important
    }

    .hero-eyebrow {
        font-size: .65rem !important;
        padding: 6px 12px !important
    }

    .hero-services-strip {
        padding: 0 14px 20px !important
    }

    .hss-row {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 14px 0 18px !important
    }

    .hss-stats-row {
        grid-template-columns: 1fr !important
    }

    .hss-stat {
        border-right: none !important;
        border-left: none !important;
        padding-left: 0 !important
    }

    .hss-stat:nth-child(odd) {
        border-right: none !important
    }

    .about-shell {
        padding: 0 14px !important;
        gap: 18px !important
    }

    .about-right {
        grid-template-columns: 1fr !important
    }

    #results {
        padding: 32px 14px 20px !important
    }

    .process-steps {
        grid-template-columns: 1fr !important;
        gap: 12px !important
    }

    .process-step {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 14px !important;
        grid-template-columns: unset !important
    }

    .process-icon {
        flex-shrink: 0 !important;
        margin-bottom: 0 !important;
        width: 48px !important;
        height: 48px !important
    }

    .process-step h3 {
        font-size: .88rem !important;
        margin: 0 0 6px !important
    }

    #work {
        padding: 28px 14px 32px !important
    }

    .work-flows {
        padding: 8px 6% 16px !important;
        gap: 12px !important
    }

    .work-flows .wf-card {
        flex: 0 0 88vw !important;
        width: 88vw !important;
        max-width: 88vw !important
    }

    .wf-card {
        padding: 14px 12px !important
    }

    .wfd-row {
        gap: 6px !important
    }

    .wfs-icon {
        width: 30px !important;
        height: 30px !important
    }

    .wfs-label {
        font-size: .6rem !important
    }

    .work-features {
        grid-template-columns: 1fr 1fr !important
    }

    .wf-feat {
        padding: 12px 10px !important
    }

    .wf-feat-title {
        font-size: .78rem !important
    }

    .wf-feat-desc {
        font-size: .68rem !important
    }

    #testimonials {
        padding: 28px 0 22px !important
    }

    .testimonials-grid {
        padding: 0 14px !important
    }

    .carousel-track {
        padding: 10px 5% 10px !important;
        gap: 12px !important
    }

    .testimonial-card {
        flex: 0 0 90vw !important;
        max-width: 90vw !important;
        padding: 16px 14px 18px !important
    }

    .tc-list li {
        font-size: .76rem !important
    }

    .tc-quote {
        font-size: .8rem !important
    }

    .carousel-nav {
        width: 32px !important;
        height: 32px !important;
        font-size: .82rem !important
    }

    #team {
        padding: 28px 14px 22px !important
    }

    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important
    }

    .team-card-top {
        padding: 14px 14px 10px !important
    }

    .team-card-body {
        padding: 10px 14px 14px !important
    }

    .team-bio {
        font-size: .78rem !important
    }

    #cta-section {
        padding: 28px 14px 22px !important
    }

    .cta-form {
        padding: 14px !important;
        border-radius: 12px !important
    }

    .cta-card-header h4 {
        font-size: .96rem !important
    }

    #cta-section h2 {
        font-size: clamp(1.5rem, 8vw, 2rem) !important
    }

    footer {
        padding: 36px 14px 22px !important
    }

    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding-bottom: 20px !important
    }

    .footer-col ul {
        gap: 8px !important
    }

    .footer-legal-links {
        flex-direction: column !important;
        gap: 4px !important
    }

    .footer-legal-links span {
        display: none !important
    }

    .pa-header {
        padding: 88px 14px 24px !important
    }

    .pa-section {
        padding: 22px 14px !important
    }

    .pa-filter-bar {
        padding: 0 14px !important
    }

    .pa-systems-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important
    }

    .pa-process-section {
        padding: 28px 14px !important
    }

    .pa-process-steps {
        flex-direction: column !important;
        gap: 12px !important
    }

    .pa-process-step {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 12px !important
    }

    .pa-ps-icon {
        flex-shrink: 0 !important;
        margin-bottom: 0 !important
    }

    .faq-page-wrap {
        padding: 90px 14px 40px !important
    }

    .otp-input-digit {
        height: 42px !important;
        font-size: 1rem !important
    }

    .modal-box {
        padding: 22px 16px 28px !important
    }
}

@media (max-width:380px) {
    #hero h1 {
        font-size: 1.52rem !important
    }

    .nav-inner {
        padding: 0 12px !important;
        height: 54px !important
    }

    .logo {
        font-size: 1.12rem !important
    }

    #hero {
        padding: 74px 12px 14px !important
    }

    .hero-sub {
        font-size: .85rem !important
    }

    .about-shell {
        padding: 0 12px !important
    }

    #work {
        padding: 24px 12px 28px !important
    }

    .work-flows {
        padding: 6px 4% 14px !important
    }

    .work-flows .wf-card {
        flex: 0 0 92vw !important;
        width: 92vw !important;
        max-width: 92vw !important
    }

    #cta-section {
        padding: 22px 12px 20px !important
    }

    .cta-form {
        padding: 12px !important
    }

    footer {
        padding: 30px 12px 20px !important
    }

    #team {
        padding: 22px 12px 18px !important
    }

    #testimonials .testimonials-grid {
        padding: 0 12px !important
    }

    .carousel-track {
        padding: 8px 3% 8px !important
    }

    .testimonial-card {
        flex: 0 0 92vw !important;
        max-width: 92vw !important
    }

    .pa-header {
        padding: 80px 12px 20px !important
    }

    .faq-page-wrap {
        padding: 86px 12px 36px !important
    }
}

@media (max-height:520px) and (orientation:landscape) {
    #hero {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        padding: 80px 24px 24px !important;
        gap: 20px !important
    }

    .hero-right {
        display: flex !important;
        margin-top: 0 !important
    }

    .hero-visual {
        max-width: 260px !important;
        height: 200px !important;
        min-height: auto !important
    }

    .hv-card-1 {
        max-width: 240px !important
    }

    #hero h1 {
        font-size: clamp(1.5rem, 4vw, 2rem) !important
    }

    section {
        padding-top: 40px !important;
        padding-bottom: 40px !important
    }
}

@media (min-width:1921px) {

    .nav-inner,
    .hero-services-strip,
    #hero {
        max-width: 1800px;
        margin-left: auto;
        margin-right: auto
    }

    section {
        max-width: 1600px
    }
}

.hss-inner,
.hss-stats-row,
.hss-row,
.about-shell,
.about-right,
.cta-form,
#cta-section .inner,
.modal-box,
.compact-otp-box,
.project-content-panel,
.mobile-nav-panel-inner,
.footer-inner,
.footer-top {
    box-sizing: border-box
}

@media (max-width:900px) {

    #hero,
    #about,
    #results,
    #work,
    #testimonials,
    #team,
    #contact,
    #more-projects {
        padding-left: revert;
        padding-right: revert
    }
}

.carousel-track,
.work-flows {
    -ms-overflow-style: none;
    scrollbar-width: none
}

.carousel-track::-webkit-scrollbar,
.work-flows::-webkit-scrollbar {
    display: none
}

.ac-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px
}

.about-card-story .ac-title-row {
    gap: 10px
}

.ac-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--spruce);
    background: rgba(216, 226, 220, .76);
    border-radius: 14px
}

.about-card-story .ac-icon {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, .86);
    background: transparent;
    border-radius: 0
}

.ac-icon svg {
    width: 24px;
    height: 24px
}

.about-card-story .ac-icon svg {
    width: 18px;
    height: 18px
}

.about-rule {
    width: 32px;
    height: 3px;
    background: rgba(53, 79, 82, .25);
    border-radius: 2px;
    margin-bottom: 22px
}

@media (max-width:768px) {
    .nav-back {
        font-size: .88rem !important
    }
}

@media (max-width:480px) {
    #toast-container {
        bottom: 12px;
        right: 12px;
        left: 12px
    }

    .toast {
        max-width: 100%;
        width: 100%;
        min-width: 0
    }
}

#faq-view,
#projects-view {
    background: var(--sage);
    min-height: 100vh
}

.process-panel {
    overflow: visible !important
}

@media (max-width:768px) {

    .about-card,
    .about-card-story {
        min-height: auto !important
    }

    .about-card-story .ac-body {
        max-width: 100% !important
    }
}

#hero[style*="display:none"],
#hero[style*="display:none"],
#hero.home-section-hidden,
#about[style*="display:none"],
#about[style*="display:none"],
#about.home-section-hidden,
#about-old[style*="display:none"],
#about-old[style*="display:none"],
#about-old.home-section-hidden,
#hero-services-strip[style*="display:none"],
#hero-services-strip[style*="display:none"],
#hero-services-strip.home-section-hidden,
#results[style*="display:none"],
#results[style*="display:none"],
#results.home-section-hidden,
#results-old[style*="display:none"],
#results-old[style*="display:none"],
#results-old.home-section-hidden,
#work[style*="display:none"],
#work[style*="display:none"],
#work.home-section-hidden,
#testimonials[style*="display:none"],
#testimonials[style*="display:none"],
#testimonials.home-section-hidden,
#team[style*="display:none"],
#team[style*="display:none"],
#team.home-section-hidden,
#more-projects[style*="display:none"],
#more-projects[style*="display:none"],
#more-projects.home-section-hidden,
#contact[style*="display:none"],
#contact[style*="display:none"],
#contact.home-section-hidden,
#footer[style*="display:none"],
#footer[style*="display:none"],
#footer.home-section-hidden {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important
}

@media (max-width:768px) {
    .process-steps {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important
    }

    .process-step {
        display: grid !important;
        grid-template-columns: 48px minmax(0, 1fr) !important;
        grid-template-rows: auto auto !important;
        column-gap: 14px !important;
        row-gap: 4px !important;
        text-align: left !important;
        align-items: start !important;
        padding-bottom: 14px !important
    }

    .process-icon {
        grid-column: 1 / 2 !important;
        grid-row: 1 / 3 !important;
        margin-bottom: 0 !important;
        align-self: start !important;
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    .process-step h3 {
        grid-column: 2 / 3 !important;
        grid-row: 1 / 2 !important;
        align-self: start !important;
        margin: 0 0 4px !important;
        font-size: 0.9rem !important;
        line-height: 1.25 !important
    }

    .process-step p {
        grid-column: 2 / 3 !important;
        grid-row: 2 / 3 !important;
        max-width: none !important;
        margin: 0 !important;
        font-size: 0.84rem !important;
        line-height: 1.55 !important
    }

    .process-arrow {
        display: none !important
    }
}

@media (max-width:768px) {
    .fsh-icon {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    .fsh-icon svg {
        display: block !important;
        width: 20px !important;
        height: 20px !important;
        max-width: 20px !important;
        flex-shrink: 0 !important
    }

    .fsf-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    .fsf-icon svg {
        display: block !important;
        width: 16px !important;
        height: 16px !important;
        max-width: 16px !important;
        flex-shrink: 0 !important
    }

    .pa-stat-icon {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    .pa-stat-icon svg {
        display: block !important;
        width: 22px !important;
        height: 22px !important;
        max-width: 22px !important;
        max-height: 22px !important;
        flex-shrink: 0 !important
    }

    .pa-sys-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    .pa-sys-icon svg {
        display: block !important;
        width: 18px !important;
        height: 18px !important;
        max-width: 18px !important;
        flex-shrink: 0 !important
    }

    .faq-sc-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    .faq-sc-icon svg {
        display: block !important;
        width: 18px !important;
        height: 18px !important;
        max-width: 18px !important;
        flex-shrink: 0 !important
    }

    .ac-icon {
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    .ac-icon svg {
        width: 24px !important;
        height: 24px !important;
        max-width: 24px !important;
        flex-shrink: 0 !important
    }

    @media (max-width:768px) {
        #about {
            padding-top: 48px !important
        }

        .about-shell {
            padding: 18px 12px !important;
            gap: 16px !important
        }

        .about-copy {
            padding-top: 0 !important
        }

        .about-copy h2 {
            font-size: clamp(1.5rem, 5.5vw, 2rem) !important;
            margin-bottom: 18px !important;
            line-height: 1.2 !important
        }

        .about-copy .section-sub {
            font-size: 0.88rem !important;
            line-height: 1.6 !important;
            margin-bottom: 20px !important
        }

        .about-right {
            gap: 12px !important;
            padding: 0 !important
        }

        .about-card {
            min-height: auto !important;
            padding: 16px 16px !important;
            border-radius: 10px !important
        }

        .about-card-story {
            min-height: auto !important;
            padding: 18px 16px !important
        }

        .ac-title-row {
            gap: 10px !important;
            margin-bottom: 12px !important
        }

        .ac-title {
            font-size: 0.9rem !important;
            font-weight: 700 !important;
            letter-spacing: 0.03em !important
        }

        .ac-body {
            font-size: 0.8rem !important;
            line-height: 1.5 !important;
            margin: 0 !important
        }

        .about-card-story .ac-body {
            color: rgba(255, 255, 255, 0.92) !important
        }
    }

    @media (max-width:480px) {
        #about {
            padding-top: 40px !important
        }

        .about-shell {
            padding: 14px 10px !important;
            gap: 12px !important
        }

        .about-copy h2 {
            font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
            margin-bottom: 14px !important
        }

        .about-copy .section-tag {
            font-size: 0.7rem !important;
            margin-bottom: 14px !important
        }

        .about-copy .section-sub {
            font-size: 0.82rem !important;
            line-height: 1.55 !important
        }

        .about-right {
            gap: 10px !important
        }

        .about-card {
            padding: 14px 12px !important;
            border-radius: 8px !important
        }

        .about-card-story {
            padding: 16px 12px !important
        }

        .ac-icon svg {
            width: 20px !important;
            height: 20px !important
        }

        .ac-title {
            font-size: 0.85rem !important
        }

        .ac-body {
            font-size: 0.75rem !important;
            line-height: 1.45 !important
        }
    }

    @media (max-width:768px) {
        #work {
            padding-left: 16px !important;
            padding-right: 16px !important
        }

        .work-top {
            padding-left: 0 !important;
            padding-right: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important
        }

        #work-flows-track {
            padding: 12px 16px 20px !important;
            margin-left: 0 !important;
            margin-right: 0 !important
        }

        #more-projects {
            padding-left: 16px !important;
            padding-right: 16px !important
        }

        #more-projects .inner {
            padding-left: 0 !important;
            padding-right: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important
        }
    }

    @media (max-width:480px) {
        #work {
            padding-left: 12px !important;
            padding-right: 12px !important
        }

        #work-flows-track {
            padding: 12px 12px 16px !important
        }

        #more-projects {
            padding-left: 12px !important;
            padding-right: 12px !important
        }

        #more-projects .inner {
            padding-left: 0 !important;
            padding-right: 0 !important
        }
    }

    .testimonial-card {
        display: flex !important;
        flex-direction: column !important
    }

    .tc-bottom-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        margin-top: auto !important;
        padding-top: 16px !important;
        border-top: 1px solid rgba(34, 37, 42, 0.1) !important
    }

    .tc-bottom-row::after {
        content: 'View Project Details →' !important;
        display: block !important;
        background: #354F52 !important;
        color: white !important;
        padding: 11px 16px !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        text-align: center !important;
        font-size: 0.9rem !important;
        transition: all 0.2s ease !important;
        cursor: pointer !important;
        order: 3 !important;
        margin-top: 8px !important
    }

    .testimonial-card:hover .tc-bottom-row::after {
        background: #2a3d3f !important;
        transform: translateY(-2px) !important
    }

    @media (max-width:768px) {
        .tc-bottom-row {
            gap: 12px !important;
            padding-top: 12px !important
        }

        .tc-bottom-row::after {
            padding: 10px 14px !important;
            font-size: 0.85rem !important;
            margin-top: 6px !important
        }
    }

    .perk-icon-box {
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    .perk-icon-box svg {
        width: 18px !important;
        height: 18px !important;
        max-width: 18px !important
    }

    .metric-icon {
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    .metric-icon svg {
        width: 20px !important;
        height: 20px !important;
        max-width: 20px !important
    }

    .footer-contact-icon {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    .footer-contact-icon svg {
        display: block !important;
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        flex-shrink: 0 !important
    }

    .process-icon {
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    .process-icon svg {
        width: 30px !important;
        height: 30px !important;
        max-width: 30px !important
    }

    .result-stat-icon {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    .result-stat-icon svg {
        width: 22px !important;
        height: 22px !important;
        max-width: 22px !important;
        max-height: 22px !important
    }

    .hss-icon,
    .hss-stat-icon {
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    .hss-icon svg {
        width: 15px !important;
        height: 15px !important;
        max-width: 15px !important;
        max-height: 15px !important
    }

    .hss-stat-icon svg {
        width: 15px !important;
        height: 15px !important;
        max-width: 15px !important;
        max-height: 15px !important
    }

    .wfs-icon,
    .wf-feat-icon {
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    .wfs-icon svg {
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important
    }

    .wf-feat-icon svg {
        width: 16px !important;
        height: 16px !important;
        max-width: 16px !important;
        max-height: 16px !important
    }

    .faq-acc-icon {
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    .faq-acc-icon svg {
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important
    }

    .pa-ps-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    .pa-ps-icon svg {
        width: 18px !important;
        height: 18px !important;
        max-width: 18px !important;
        max-height: 18px !important
    }
}

@media (max-width:480px) {
    .pa-stat-icon svg {
        width: 18px !important;
        height: 18px !important;
        max-width: 18px !important
    }
}

@media (max-width:768px) {
    .footer-top {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px 24px !important;
        padding-bottom: 24px !important;
        margin-bottom: 16px !important;
        align-items: start !important
    }

    .footer-brand {
        grid-column: 1 / -1 !important;
        margin-bottom: 4px !important
    }

    .footer-col {
        align-self: start !important
    }

    .footer-contact-list a,
    .footer-contact-list li span {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        font-size: 0.80rem !important
    }

    .footer-contact-list {
        gap: 10px !important
    }

    .footer-contact-list li {
        align-items: flex-start !important;
        gap: 8px !important
    }

    footer .footer-top {
        grid-auto-rows: min-content !important;
        align-content: start !important
    }

    footer .footer-col,
    footer .footer-brand {
        min-height: 0 !important;
        height: auto !important
    }
}

@media (max-width:480px) {
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 16px !important
    }
}

@media (max-width:768px) {
    #work {
        max-width: 100vw !important;
        overflow-x: hidden !important
    }

    .work-flows,
    #work-flows-track {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        max-width: 100% !important
    }

    #work-flows-track .wf-card {
        flex-shrink: 0 !important
    }

    .work-top,
    .work-flows,
    .wf-card {
        max-width: 100% !important;
        min-width: 0 !important
    }

    .wf-card {
        overflow: hidden !important;
        box-sizing: border-box !important
    }

    .wf-diagram {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch
    }

    .wfd-row {
        min-width: 0 !important
    }

    .wfs-icon svg,
    .wf-feat-icon svg {
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important
    }
}

@media (max-width:768px) {
    .iti {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important
    }

    .iti__flag-container {
        max-width: 76px !important
    }

    .iti__selected-flag {
        padding: 0 8px !important
    }

    .form-group .iti input,
    .form-group input[type="tel"] {
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 52px !important
    }

    .iti--separate-dial-code input[type="tel"],
    .iti--separate-dial-code .iti__tel-input {
        padding-left: 92px !important
    }

    .iti--separate-dial-code .iti__selected-dial-code {
        font-size: 0.85rem !important;
        padding-right: 4px !important
    }

    #cta-section .form-group,
    .modal-box .form-group {
        min-width: 0 !important
    }
}

@media (max-width:480px) {
    .iti__flag-container {
        max-width: 72px !important
    }

    .iti__selected-flag {
        padding: 0 6px !important
    }

    .form-group .iti input,
    .form-group input[type="tel"] {
        padding-left: 48px !important
    }

    .iti--separate-dial-code input[type="tel"],
    .iti--separate-dial-code .iti__tel-input {
        padding-left: 88px !important
    }
}

@media (max-width:768px) {

    #faq-view,
    #projects-view {
        overflow-x: clip;
        max-width: 100%
    }

    .faq-page-wrap {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 28px !important;
        padding: 100px 18px 48px !important;
        box-sizing: border-box !important
    }

    .faq-acc-header {
        align-items: flex-start !important;
        gap: 12px !important;
        min-width: 0 !important
    }

    .faq-acc-q {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
        line-height: 1.35 !important
    }

    .faq-acc-body {
        padding: 0 16px !important
    }

    .faq-acc-item.open .faq-acc-body {
        padding: 0 16px 16px !important
    }

    .faq-acc-body p,
    .faq-acc-tags {
        min-width: 0 !important
    }

    .faq-acc-tags span {
        max-width: 100% !important;
        white-space: normal !important
    }

    #support-section {
        padding: 36px 18px !important
    }

    .faq-support-cards {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        background: transparent !important;
        border: none !important
    }

    .faq-sc {
        border: 1px solid var(--border) !important;
        border-radius: var(--radius) !important
    }

    .faq-sc-body {
        flex: 1 !important;
        min-width: 0 !important
    }

    .faq-sc-link {
        overflow-wrap: anywhere !important;
        word-break: normal !important
    }

    .pa-header {
        padding: 96px 18px 28px !important
    }

    .pa-header-inner {
        flex-direction: column !important;
        gap: 24px !important
    }

    .pa-header-right {
        width: 100% !important
    }

    .pa-stats-box {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 1px !important;
        flex-wrap: unset !important;
        overflow: hidden !important;
        background: var(--border) !important
    }

    .pa-stat-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex: unset !important;
        min-width: 0 !important;
        width: auto !important;
        padding: 14px 10px !important;
        border: none !important;
        background: var(--white) !important
    }

    .pa-stat-divider {
        display: none !important
    }

    .pa-stat-num {
        font-size: 1.2rem !important
    }

    .pa-stat-lbl {
        font-size: 0.65rem !important;
        line-height: 1.3 !important
    }

    .pa-filter-bar {
        padding: 0 18px !important
    }

    .pa-filter-inner {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important
    }

    .pa-filters {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        width: 100% !important;
        gap: 6px !important;
        padding-bottom: 4px;
        scrollbar-width: none
    }

    .pa-filters::-webkit-scrollbar {
        display: none
    }

    .pa-filter-btn {
        flex-shrink: 0 !important
    }

    .pa-sort-wrap {
        width: 100% !important;
        justify-content: space-between !important
    }

    .pa-section {
        padding: 28px 18px !important
    }

    .pa-section-inner {
        padding: 0 !important
    }

    .pa-featured-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important
    }

    .pa-fc,
    .pa-fc-body,
    .pa-fc-content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important
    }

    .pa-fc-body {
        flex-direction: column !important
    }

    .pa-fc-visual {
        display: none !important;
        min-width: 0 !important;
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        overflow: hidden !important
    }

    .pa-systems-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important
    }

    .pa-sys-card {
        min-width: 0 !important;
        width: 100% !important
    }

    .pa-process-section {
        padding: 36px 18px !important
    }

    .pa-process-inner {
        flex-direction: column !important;
        gap: 20px !important
    }

    .pa-process-left {
        width: 100% !important
    }

    .pa-process-steps {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important
    }

    .pa-process-step {
        display: grid !important;
        grid-template-columns: 40px 1fr !important;
        grid-template-rows: auto auto !important;
        column-gap: 14px !important;
        row-gap: 4px !important;
        align-items: start !important;
        padding: 18px 0 !important;
        border-bottom: 1px solid rgba(34, 37, 42, 0.1) !important
    }

    .pa-process-step:first-child {
        padding-top: 0 !important
    }

    .pa-process-step:last-child {
        padding-bottom: 0 !important;
        border-bottom: none !important
    }

    .pa-process-step .pa-ps-icon {
        grid-row: 1 / -1 !important;
        grid-column: 1 !important
    }

    .pa-process-step .pa-ps-title {
        grid-column: 2 !important;
        grid-row: 1 !important
    }

    .pa-process-step .pa-ps-desc {
        grid-column: 2 !important;
        grid-row: 2 !important
    }

    .pa-process-arrow {
        display: none !important
    }

    .result-stat {
        min-width: 0 !important
    }

    .result-stat-label {
        font-size: 0.72rem !important;
        line-height: 1.35 !important
    }

    .results-stats-panel {
        min-width: 0 !important
    }

    #projects-view .pa-stat-icon,
    #projects-view .pa-sys-icon,
    #projects-view .pa-ps-icon {
        overflow: hidden !important
    }

    #projects-view .pa-stat-icon svg {
        width: 22px !important;
        height: 22px !important;
        max-width: 22px !important;
        max-height: 22px !important
    }

    #faq-view .fsh-icon svg {
        width: 20px !important;
        height: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important
    }

    #faq-view .fsf-icon svg {
        width: 16px !important;
        height: 16px !important;
        max-width: 16px !important;
        max-height: 16px !important
    }
}

@media (max-width:767px) {

    #faq-view,
    #projects-view {
        overflow-x: clip;
        max-width: 100%
    }

    .faq-page-wrap {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 28px !important;
        padding: 100px 18px 48px !important;
        box-sizing: border-box !important
    }

    .faq-acc-header {
        align-items: flex-start !important;
        gap: 12px !important;
        min-width: 0 !important
    }

    .faq-acc-q {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
        line-height: 1.35 !important
    }

    .faq-acc-body {
        padding: 0 16px !important
    }

    .faq-acc-item.open .faq-acc-body {
        padding: 0 16px 16px !important
    }

    .faq-acc-body p,
    .faq-acc-tags {
        min-width: 0 !important
    }

    .faq-acc-tags span {
        max-width: 100% !important;
        white-space: normal !important
    }

    #support-section {
        padding: 36px 18px !important
    }

    .faq-support-cards {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        background: transparent !important;
        border: none !important
    }

    .faq-sc {
        border: 1px solid var(--border) !important;
        border-radius: var(--radius) !important
    }

    .faq-sc-body {
        flex: 1 !important;
        min-width: 0 !important
    }

    .faq-sc-link {
        overflow-wrap: anywhere !important;
        word-break: normal !important
    }

    .pa-header {
        padding: 96px 18px 28px !important
    }

    .pa-header-inner {
        flex-direction: column !important;
        gap: 24px !important
    }

    .pa-header-right {
        width: 100% !important
    }

    .pa-stats-box {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 1px !important;
        flex-wrap: unset !important;
        overflow: hidden !important;
        background: var(--border) !important
    }

    .pa-stat-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex: unset !important;
        min-width: 0 !important;
        width: auto !important;
        padding: 14px 10px !important;
        border: none !important;
        background: var(--white) !important
    }

    .pa-stat-divider {
        display: none !important
    }

    .pa-filter-bar {
        padding: 0 18px !important
    }

    .pa-filter-inner {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important
    }

    .pa-filters {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        width: 100% !important;
        gap: 6px !important;
        padding-bottom: 4px;
        scrollbar-width: none
    }

    .pa-filters::-webkit-scrollbar {
        display: none
    }

    .pa-filter-btn {
        flex-shrink: 0 !important
    }

    .pa-sort-wrap {
        width: 100% !important;
        justify-content: space-between !important
    }

    .pa-section {
        padding: 28px 18px !important
    }

    .pa-section-inner {
        padding: 0 !important
    }

    .pa-featured-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important
    }

    .pa-fc,
    .pa-fc-body,
    .pa-fc-content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important
    }

    .pa-fc-body {
        flex-direction: column !important
    }

    .pa-fc-visual {
        display: none !important;
        min-width: 0 !important;
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        overflow: hidden !important
    }

    .pa-systems-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important
    }

    .pa-sys-card {
        min-width: 0 !important;
        width: 100% !important
    }

    .pa-process-section {
        padding: 36px 18px !important
    }

    .pa-process-inner {
        flex-direction: column !important;
        gap: 20px !important
    }

    .pa-process-steps {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important
    }

    .pa-process-step {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 12px !important;
        min-width: 0 !important
    }

    .pa-ps-icon {
        flex-shrink: 0 !important;
        margin-bottom: 0 !important
    }

    .pa-process-arrow {
        display: none !important
    }
}

@media (max-width:768px),
(max-width:767px) {
    #faq-view .faq-acc-icon {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        max-width: 28px !important;
        flex-shrink: 0 !important;
        overflow: hidden !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important
    }

    #faq-view .faq-acc-icon svg {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important
    }

    #faq-view .faq-sidebar-highlight {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 14px !important
    }

    #faq-view .faq-sidebar-features {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important
    }

    #faq-view .faq-sidebar-features li {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 14px !important;
        list-style: none !important
    }

    #faq-view .fsf-icon,
    #faq-view .fsh-icon {
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    #faq-view #support-section {
        padding-top: 48px !important;
        scroll-margin-top: 88px !important
    }

    #projects-view .pa-stats-box {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 1px !important;
        background: var(--border) !important;
        overflow: hidden !important
    }

    #projects-view .pa-stat-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 14px 10px !important;
        min-width: 0 !important;
        background: var(--white) !important;
        border: none !important
    }

    #projects-view .pa-stat-icon {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        max-width: 28px !important;
        overflow: hidden !important;
        flex-shrink: 0 !important
    }

    #projects-view .pa-stat-icon svg {
        width: 22px !important;
        height: 22px !important;
        max-width: 22px !important;
        max-height: 22px !important
    }

    #projects-view .pa-section-label svg {
        width: 15px !important;
        height: 15px !important;
        max-width: 15px !important;
        max-height: 15px !important;
        flex-shrink: 0 !important
    }

    #projects-view .pa-sort-chevron {
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important;
        flex-shrink: 0 !important;
        overflow: hidden !important
    }

    #projects-view .pa-sort-chevron svg {
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important
    }

    #projects-view .pa-sys-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        overflow: hidden !important;
        flex-shrink: 0 !important
    }

    #projects-view .pa-sys-icon svg {
        width: 18px !important;
        height: 18px !important;
        max-width: 18px !important;
        max-height: 18px !important
    }

    #projects-view .pa-sys-meta svg {
        width: 12px !important;
        height: 12px !important;
        max-width: 12px !important;
        max-height: 12px !important;
        flex-shrink: 0 !important
    }

    #projects-view .pa-fc-footer svg {
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important;
        flex-shrink: 0 !important
    }

    #projects-view .pa-process-steps {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important
    }

    #projects-view .pa-process-step {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 12px !important;
        min-width: 0 !important
    }

    #projects-view .pa-ps-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        flex-shrink: 0 !important;
        overflow: hidden !important;
        margin-bottom: 0 !important
    }

    #projects-view .pa-ps-icon svg {
        width: 18px !important;
        height: 18px !important;
        max-width: 18px !important;
        max-height: 18px !important
    }

    #projects-view .pa-ps-title,
    #projects-view .pa-ps-desc {
        min-width: 0 !important
    }
}

@media (max-width:768px) {

    #faq-view .fsh-icon svg,
    #faq-view .fsf-icon svg,
    #faq-view .faq-sc-icon svg,
    #faq-view .faq-acc-icon svg,
    #projects-view .pa-stat-icon svg,
    #projects-view .pa-sys-icon svg,
    #projects-view .pa-sys-meta svg,
    #projects-view .pa-ps-icon svg,
    #projects-view .pa-section-label svg,
    #projects-view .pa-sort-chevron,
    #projects-view .pa-sort-chevron svg,
    #projects-view .pa-fc-footer svg {
        width: auto !important;
        height: auto !important;
        max-width: 24px !important;
        max-height: 24px !important;
        flex-shrink: 0 !important
    }

    #faq-view .faq-acc-icon svg {
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important
    }

    #projects-view .pa-stat-icon svg {
        width: 22px !important;
        height: 22px !important;
        max-width: 22px !important;
        max-height: 22px !important
    }

    #projects-view .pa-section-label svg {
        width: 15px !important;
        height: 15px !important;
        max-width: 15px !important;
        max-height: 15px !important
    }

    #projects-view .pa-sys-meta svg {
        width: 12px !important;
        height: 12px !important;
        max-width: 12px !important;
        max-height: 12px !important
    }

    .faq-acc-item.open .icon-plus {
        display: none !important
    }

    .faq-acc-item:not(.open) .icon-minus {
        display: none !important
    }

    .faq-acc-item.open .icon-minus,
    .faq-acc-item:not(.open) .icon-plus {
        display: block !important
    }

    .iti {
        width: 100% !important;
        display: block !important
    }

    .iti input[type="tel"],
    .form-group .iti input {
        width: 100% !important;
        padding-left: 52px !important;
        box-sizing: border-box !important
    }

    #faq-view #support-section {
        padding-top: 56px !important;
        scroll-margin-top: 96px !important
    }

    #faq-view .faq-sidebar-highlight,
    #faq-view .faq-sidebar-features li {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 14px !important
    }

    #projects-view .pa-stats-box {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important
    }

    #projects-view .pa-process-steps {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important
    }

    #projects-view .pa-process-step {
        display: grid !important;
        grid-template-columns: 44px 1fr !important;
        grid-template-rows: auto auto !important;
        column-gap: 14px !important;
        row-gap: 6px !important;
        align-items: start !important;
        padding: 20px 0 !important;
        border-bottom: 1px solid rgba(34, 37, 42, 0.08) !important;
        flex-direction: unset !important
    }

    #projects-view .pa-process-step:last-child {
        padding-bottom: 0 !important;
        border-bottom: none !important
    }

    #projects-view .pa-process-step .pa-ps-icon {
        grid-row: 1 / -1 !important;
        grid-column: 1 !important;
        width: 44px !important;
        height: 44px !important
    }

    #projects-view .pa-process-step .pa-ps-title {
        grid-column: 2 !important;
        grid-row: 1 !important;
        font-size: 0.92rem !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        padding-top: 2px !important
    }

    #projects-view .pa-process-step .pa-ps-desc {
        grid-column: 2 !important;
        grid-row: 2 !important;
        font-size: 0.8rem !important;
        line-height: 1.55 !important;
        color: rgba(34, 37, 42, 0.55) !important
    }

    #projects-view .pa-process-arrow {
        display: none !important
    }
}

@media (max-width:1024px) {

    #hero.home-section-hidden,
    #hero-services-strip.home-section-hidden,
    #about.home-section-hidden,
    #about-old.home-section-hidden,
    #results.home-section-hidden,
    #results-old.home-section-hidden,
    #work.home-section-hidden,
    #testimonials.home-section-hidden,
    #more-projects.home-section-hidden,
    #team.home-section-hidden,
    #contact.home-section-hidden,
    #footer.home-section-hidden {
        display: none !important;
        visibility: hidden !important;
        min-height: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important
    }

    #hero[style*="display:none"],
    #hero[style*="display:none"],
    #hero-services-strip[style*="display:none"],
    #hero-services-strip[style*="display:none"],
    #about[style*="display:none"],
    #about[style*="display:none"],
    #results[style*="display:none"],
    #results[style*="display:none"],
    #work[style*="display:none"],
    #work[style*="display:none"],
    #testimonials[style*="display:none"],
    #testimonials[style*="display:none"],
    #team[style*="display:none"],
    #team[style*="display:none"],
    #contact[style*="display:none"],
    #contact[style*="display:none"],
    #footer[style*="display:none"],
    #footer[style*="display:none"] {
        display: none !important;
        visibility: hidden !important;
        min-height: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important
    }
}

.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    overscroll-behavior: contain;
    overflow: hidden
}

.legal-modal.active {
    display: flex !important
}

.legal-modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 90vw;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scroll-behavior: smooth;
    will-change: scroll-position;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.legal-modal-close {
    position: sticky;
    top: 0;
    right: 0;
    float: right;
    background: #f5f5f5;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin: 12px;
    flex-shrink: 0;
    z-index: 10000
}

.legal-modal-close:hover {
    background: #354F52;
    color: white;
    transform: rotate(90deg)
}

.legal-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor
}

.legal-header {
    padding: 24px 20px;
    background: linear-gradient(135deg, #354F52 0%, #2a3d3f 100%);
    color: white;
    border-bottom: 1px solid #ddd
}

.legal-header h1 {
    margin: 0 0 4px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2
}

.legal-date {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9
}

.legal-body {
    padding: 16px 20px
}

.legal-body section {
    margin-bottom: 10px
}

.legal-body h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #354F52;
    margin: 0 0 6px;
    padding-bottom: 4px;
    border-bottom: 2px solid #f0f0f0
}

.legal-body h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin: 6px 0 4px
}

.legal-body p {
    margin: 0 0 6px;
    line-height: 1.6;
    color: #666;
    font-size: 0.95rem
}

.legal-body ul {
    margin: 2px 0 6px 20px;
    padding: 0;
    list-style: disc
}

.legal-body li {
    margin-bottom: 2px;
    line-height: 1.5;
    color: #666;
    font-size: 0.95rem
}

.legal-body strong {
    color: #354F52;
    font-weight: 600
}

@media (max-width:768px) {
    .legal-modal-content {
        max-width: 95vw;
        max-height: 90vh;
        border-radius: 8px
    }

    .legal-header {
        padding: 16px 16px
    }

    .legal-header h1 {
        font-size: 1.5rem
    }

    .legal-body {
        padding: 16px 16px
    }

    .legal-body h2 {
        font-size: 1.1rem
    }

    .legal-body h3 {
        font-size: 0.95rem
    }

    .legal-body p,
    .legal-body li {
        font-size: 0.9rem
    }
}

@media (max-width:480px) {
    .legal-modal-content {
        max-height: 92vh;
        border-radius: 6px
    }

    .legal-header {
        padding: 12px 12px
    }

    .legal-header h1 {
        font-size: 1.3rem
    }

    .legal-date {
        font-size: 0.8rem
    }

    .legal-body {
        padding: 12px 12px
    }

    .legal-body section {
        margin-bottom: 10px
    }

    .legal-body h2 {
        font-size: 1rem;
        margin: 0 0 6px
    }

    .legal-body h3 {
        font-size: 0.9rem
    }

    .legal-body p,
    .legal-body li {
        font-size: 0.85rem
    }

    .legal-modal-close {
        width: 38px;
        height: 38px;
        margin: 8px
    }
}