/* ========== CASE STUDY PAGE ========== */

/* ---- Hero ---- */
.cs-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 4rem;
    background: var(--white);
}

.cs-hero--light {
    background: var(--white);
}

.cs-hero__container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 5rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.cs-hero__tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.cs-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-mint);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
    color: var(--secondary-green);
    white-space: nowrap;
}

.cs-hero__title {
    font-size: 3.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.cs-hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.cs-hero__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hide mobile-only copy at desktop; revealed at ≤1024px */
.cs-hero__ctas--mobile { display: none; }

.cs-hero__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--secondary-green);
    color: var(--white);
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(var(--secondary-green-rgb), 0.3);
}

.cs-hero__btn-primary:hover {
    background: var(--secondary-green-border);
    box-shadow: 0 6px 20px rgba(var(--secondary-green-rgb), 0.4);
}

.cs-hero__trust {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.cs-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Feature cards — zig-zag right column */
.cs-hero__cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cs-hero__card {
    background: var(--white);
    border: 1px solid var(--grey-03);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.cs-hero__card:nth-child(odd) {
    margin-right: 2rem;
}

.cs-hero__card:nth-child(even) {
    margin-left: 2rem;
}

.cs-hero__card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    background: var(--grey-02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-green);
}

.cs-hero__card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cs-hero__card-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.cs-hero__card-text span {
    font-size: 0.75rem;
    color: var(--grey-05);
    margin: 0;
    line-height: 1.2;
}

/* ---- Metrics ---- */
.cs-metrics {
    background: var(--grey-02);
    padding: 8rem 0;
}

.cs-metrics__container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cs-metrics__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    text-align: center;
}

.cs-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cs-metric__value {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.cs-metric__label {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.cs-metric__desc {
    font-size: 0.8rem;
    color: var(--text-quaternary);
    line-height: 1.5;
}

/* ---- Quote ---- */
.cs-quote {
    background: var(--white);
    padding: 8rem 0;
    overflow: hidden;
    position: relative;
}

.cs-quote__bg-pattern {
    display: none;
    pointer-events: none;
}

.cs-quote__container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 5rem;
    align-items: center;
}

.cs-quote__icon {
    font-family: Georgia, serif;
    font-size: 12rem;
    color: var(--vivid-yellow);
    line-height: 0.2;
    display: block;
    opacity: 0.4;
    margin-bottom: 16px;
}

.cs-quote__text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-regular);
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 2rem;
    width: 100%;
    max-width: none;
}

.cs-quote__secondary {
    border-left: 4px solid rgba(var(--secondary-green-rgb), 0.3);
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    font-weight: var(--font-weight-light);
    font-style: italic;
    color: rgba(48,55,66,0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cs-quote__author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2rem;
}

.cs-quote__avatar {
    width: 88px;
    height: 88px;
    min-width: 88px;
    border-radius: 9999px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cs-quote__author-name {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin: 0 0 6px;
}

.cs-quote__author-company {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    color: var(--secondary-green);
    border: 1px solid var(--secondary-green);
    border-radius: 100px;
    padding: 2px 10px;
    margin: 0 0 8px;
}

.cs-quote__author-role {
    font-size: 0.78rem;
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    margin: 0 0 4px;
}

.cs-quote__author-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--text-quaternary);
    margin: 0;
    line-height: 1.5;
}

.cs-quote__image-block {
    position: relative;
}

.cs-quote__video-wrap {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.22);
    border: 4px solid var(--white);
    background: #000;
    aspect-ratio: 9/16;
}

.cs-quote__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.cs-quote__video-thumb {
    position: absolute;
    inset: 0;
    cursor: pointer;
    overflow: hidden;
    border-radius: inherit;
}

.cs-quote__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.cs-quote__video-thumb:hover .cs-quote__thumb-img {
    transform: scale(1.03);
}

.cs-quote__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cs-quote__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.9;
}

.cs-quote__video-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: var(--white);
}

.cs-quote__video-title {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.2rem;
}

.cs-quote__video-meta {
    font-size: 0.75rem;
    opacity: 0.75;
}

@keyframes wobble-badge {
    0%, 55%, 100% { transform: translate(50%, -50%) rotate(0deg); }
    65%           { transform: translate(50%, -50%) rotate(-7deg); }
    75%           { transform: translate(50%, -50%) rotate(6deg); }
    85%           { transform: translate(50%, -50%) rotate(-4deg); }
    92%           { transform: translate(50%, -50%) rotate(3deg); }
}

.cs-quote__badge {
    position: absolute;
    top: 0;
    right: 40px;
    transform: translate(50%, -50%);
    width: 72px;
    height: 72px;
    background: var(--light-mint);
    border-radius: 9999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    font-size: 0.85rem;
    text-align: center;
    color: var(--text-primary);
    font-weight: var(--font-weight-regular);
    animation: wobble-badge 3.5s ease-in-out infinite;
}

.cs-quote__badge strong {
    font-weight: var(--font-weight-regular);
}

.cs-quote__badge span {
    font-size: 0.65rem;
    font-weight: var(--font-weight-regular);
    color: var(--text-primary);
}

/* ---- Story ---- */
.cs-story {
    background: var(--grey-02);
    padding: 8rem 0;
}

.cs-story__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cs-story__heading {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.cs-story__body {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.cs-story__callout {
    background: var(--white);
    border-left: 4px solid var(--secondary-green);
    border-radius: 0 10px 10px 0;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.cs-story__callout-title {
    font-size: 0.9rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.cs-story__checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cs-story__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-secondary);
}

.cs-story__checklist li i,
.cs-story__checklist li svg {
    color: var(--secondary-green);
    stroke: var(--secondary-green);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---- Workflow ---- */
.cs-workflow {
    background: var(--white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cs-workflow__container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cs-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cs-section__title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

.cs-section__subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.cs-workflow__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cs-workflow__card {
    background: var(--white);
    border: 1px solid var(--grey-03);
    border-radius: 16px;
    padding: 1.25rem;
}

.cs-workflow__card-num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--grey-02);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-green);
    margin-bottom: 1.25rem;
}

.cs-workflow__card-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cs-workflow__card-desc {
    font-size: 0.875rem;
    color: var(--grey-05);
    line-height: 1.65;
}

/* ---- Checklist Feature ---- */
.cs-checklist {
    background: var(--white);
    padding: 8rem 0;
}

.cs-checklist__container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cs-checklist__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.cs-checklist__col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--white);
    border: 1px solid var(--grey-03);
    border-radius: 16px;
    padding: 1.25rem;
}

.cs-checklist__feature {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cs-checklist__feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: var(--grey-02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-green);
}

.cs-checklist__feature-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cs-checklist__feature-desc {
    font-size: 0.875rem;
    color: var(--grey-05);
    line-height: 1.65;
}

.cs-checklist__card {
    background: var(--white);
    border: none;
    border-top: 3px solid var(--secondary-green);
    border-radius: 0.5rem;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.cs-checklist__card-title {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--grey-03);
    margin-bottom: 1rem;
}

.cs-checklist__card-time {
    font-size: 0.75rem;
    color: var(--grey-05);
    font-weight: var(--font-weight-regular);
}

.cs-checklist__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.cs-checklist__item--done {
    text-decoration: line-through;
    color: var(--text-quaternary);
}

.cs-checklist__checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 4px;
    background: var(--secondary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.cs-checklist__checkbox--empty {
    background: var(--white);
    border: 2px solid var(--grey-03);
    border-radius: 4px;
}

.cs-checklist__item--obs {
    align-items: flex-start;
}

.cs-checklist__obs-meta {
    font-size: 0.72rem;
    color: var(--text-quaternary);
    margin-top: 2px;
}

.cs-checklist__note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.cs-checklist__note-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 6px;
    background: var(--grey-02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.cs-checklist__workflow {
    margin-top: 2.5rem;
    background: var(--text-primary);
    border-radius: 16px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 2fr 3fr;
    align-items: center;
    gap: 3rem;
}

.cs-checklist__workflow-title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    text-align: left;
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cs-checklist__workflow-steps {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.cs-checklist__workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1.25rem;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.cs-checklist__workflow-step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cs-checklist__workflow-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-green);
}

.cs-checklist__workflow-label {
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin: 0;
}

.cs-checklist__workflow-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.cs-checklist__workflow-arrow {
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

/* ---- Crew Adoption ---- */
.cs-crew {
    background: var(--grey-02);
    padding: 8rem 0;
}

.cs-crew__container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cs-crew__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-mint);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
    color: var(--secondary-green);
    margin-bottom: 1.25rem;
}

.cs-crew__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.cs-crew__quote-block {
    margin-top: 2rem;
}

.cs-crew__quote-bar {
    display: none;
}

.cs-crew__quote-icon {
    font-family: Georgia, serif;
    font-size: 8rem;
    color: var(--secondary-green);
    line-height: 0.2;
    display: block;
    opacity: 0.25;
    margin-bottom: 1rem;
}

.cs-crew__quote-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cs-crew__quote-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-regular);
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
}

.cs-crew__quote-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.cs-crew__quote-avatar {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 9999px;
    object-fit: cover;
    border: 3px solid var(--secondary-green);
}

.cs-crew__quote-name {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin: 0 0 6px;
}

.cs-crew__quote-company {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    color: var(--secondary-green);
    border: 1px solid var(--secondary-green);
    border-radius: 100px;
    padding: 2px 10px;
    margin: 0 0 8px;
}

.cs-crew__quote-role {
    font-size: 0.78rem;
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    margin: 0 0 4px;
}

.cs-crew__quote-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--text-quaternary);
    margin: 0;
    line-height: 1.5;
}

.cs-crew__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cs-crew__feature {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: var(--white);
    border: 1px solid var(--grey-03);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.cs-crew__feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 12px;
    background: var(--grey-02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-green);
}

.cs-crew__feature-title {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin: 0 0 4px;
    line-height: 1.2;
}

.cs-crew__feature-desc {
    font-size: 0.75rem;
    color: var(--grey-05);
    line-height: 1.2;
    margin: 0;
}

.cs-crew__image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.cs-crew__image-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.cs-crew__image-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.cs-crew__photo {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    max-height: 520px;
}

.cs-crew__notification {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.625rem 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    box-shadow: none;
    z-index: 1;
}

.cs-crew__notif-check {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: var(--secondary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.cs-crew__notif-title {
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin: 0;
}

.cs-crew__notif-sub {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@keyframes wobble-stat {
    0%, 55%, 100% { transform: translate(50%, -50%) rotate(0deg); }
    65%           { transform: translate(50%, -50%) rotate(-7deg); }
    75%           { transform: translate(50%, -50%) rotate(6deg); }
    85%           { transform: translate(50%, -50%) rotate(-4deg); }
    92%           { transform: translate(50%, -50%) rotate(3deg); }
}

.cs-crew__stat-badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    transform: translate(50%, -50%);
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    text-align: center;
    min-width: 120px;
    animation: wobble-stat 3.5s ease-in-out 1.6s infinite;
}

.cs-crew__stat-badge strong {
    display: block;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    line-height: 1;
}

.cs-crew__stat-badge span {
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    line-height: 1.3;
    display: block;
    margin-top: 0.25rem;
}

.cs-crew__timeline {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--grey-03);
}

.cs-crew__timeline-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    text-align: center;
    margin: 0 0 2.5rem;
}

.cs-crew__timeline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cs-crew__step {
    background: var(--white);
    border: 1px solid var(--grey-03);
    border-radius: 16px;
    padding: 1.5rem;
}

.cs-crew__step-period {
    display: inline-flex;
    align-items: center;
    background: var(--light-mint);
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--secondary-green);
    margin-bottom: 1rem;
    width: fit-content;
}

.cs-crew__step-period--highlight {
    background: var(--secondary-green);
    color: var(--white);
}

.cs-crew__step-title {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.cs-crew__step-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ---- Resources ---- */
.cs-resources {
    background: var(--white);
    padding: 8rem 0;
}

.cs-resources__container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cs-resources__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.cs-resources__card {
    background: var(--white);
    border: 1px solid var(--grey-03);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

/* Match [data-reveal].reveal-visible specificity (0,2,0) — keep reveal animation + add hover transitions */
.cs-resources__card.reveal-visible {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cs-resources__card:hover {
    border-color: var(--grey-09);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.cs-resources__card-thumb {
    height: 140px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: var(--grey-02);
}

.cs-resources__card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.cs-resources__card:hover .cs-resources__card-thumb img {
    transform: scale(1.05);
}

.cs-resources__card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cs-resources__chip {
    display: inline-flex;
    align-items: center;
    background: var(--light-mint);
    color: var(--secondary-green);
    font-size: 0.65rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.06em;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.cs-resources__card-title {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: #000;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.cs-resources__card-desc {
    font-size: 0.875rem;
    color: var(--grey-05);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
    flex: 1;
}

.cs-resources__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
    align-self: flex-start;
    margin-top: auto;
}

.cs-resources__link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cs-resources__card:hover .cs-resources__link {
    gap: 0.65rem;
    color: var(--secondary-green);
}

/* ---- FAQ ---- */
.cs-faq {
    padding: 4rem 0 8rem 0;
    background: var(--white);
}

.faq-section__container {
    background: var(--grey-02);
    border-radius: 32px;
    padding: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: none;
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
    margin-bottom: 1rem;
}

.faq-item__trigger {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.25rem;
    font-weight: var(--font-weight-regular);
    color: var(--text-primary);
    gap: 1rem;
}

.faq-item.active .faq-item__trigger {
    font-weight: var(--font-weight-semibold);
}

.faq-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--grey-02);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item__trigger i,
.faq-item__trigger svg {
    width: 18px;
    height: 18px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.faq-item.active .faq-icon-wrapper {
    transform: rotate(180deg);
}

.faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-item__content {
    max-height: 1000px;
}

.faq-item__content p {
    padding: 0 2rem 2rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: left;
}

/* ---- CTA Section ---- */
.cs-cta {
    position: relative;
    overflow: hidden;
    background: var(--text-primary);
    padding: 8rem 0;
}

.cs-cta__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a1629 0%, #035B60 50%, #0a1629 100%);
}

.cs-cta__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.07;
}

.cs-cta__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cs-cta__title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.cs-cta__subtitle {
    font-size: 1.25rem;
    font-weight: var(--font-weight-light);
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.cs-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cs-cta__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--secondary-green);
    color: var(--white);
    font-weight: var(--font-weight-bold);
    font-size: 1.125rem;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(var(--secondary-green-rgb), 0.3);
}

.cs-cta__btn-primary:hover {
    background: var(--secondary-green-border);
}

.cs-cta__btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-weight: var(--font-weight-bold);
    font-size: 1.125rem;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.25);
    text-decoration: none;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: background 0.2s ease;
}

.cs-cta__btn-secondary:hover {
    background: rgba(255,255,255,0.18);
}

.cs-cta__features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.cs-cta__feature-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.cs-cta__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.cs-cta__card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.cs-cta__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(var(--secondary-green-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-green);
    margin-bottom: 1.25rem;
}

.cs-cta__card-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cs-cta__card-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}

.cs-cta__trust-heading {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

/* ---- Responsive ---- */

/* Prevent horizontal overflow from absolutely-positioned badges */
.content-wrapper {
    overflow-x: hidden;
}

/* Desktop HD (≥1280px) — base styles apply, no overrides needed */

/* ---- Desktop / Large Tablet (≤1024px) ---- */
@media (max-width: 1024px) {
    /* Section spacing */
    .cs-metrics,
    .cs-quote,
    .cs-story,
    .cs-workflow,
    .cs-checklist,
    .cs-crew,
    .cs-resources,
    .cs-faq,
    .cs-cta {
        padding: 5rem 0;
    }

    .cs-quote { padding: 4rem 0; }

    /* Section header typography */
    .cs-section__title {
        font-size: 2.5rem;
    }

    .cs-section__subtitle {
        font-size: 1.25rem;
    }

    .cs-section__header {
        margin-bottom: 3rem;
    }

    /* Hero */
    .cs-hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .cs-hero__ctas--desktop { display: none; }
    .cs-hero__ctas--mobile  { display: flex; width: 100%; }

    /* Remove subtitle bottom margin so gap below subtitle = gap below cards (both = grid gap) */
    .cs-hero__subtitle {
        margin-bottom: 0;
    }

    /* Center headline, subtitle, tags */
    .cs-hero__tags { justify-content: center; }
    .cs-hero__title,
    .cs-hero__subtitle { text-align: center; }

    /* Hide 3rd chip */
    .cs-hero__tag:nth-child(n+3) { display: none; }

    /* Cards: no shadow */
    .cs-hero__card { box-shadow: none; }

    /* Button full width */
    .cs-hero__ctas--mobile .cs-hero__btn-primary {
        width: 100%;
        justify-content: center;
    }

    .cs-hero__cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .cs-hero__card:nth-child(odd) {
        margin-right: 0;
    }

    .cs-hero__card:nth-child(even) {
        margin-left: 0;
    }

    /* Metrics — 1 per row */
    .cs-metrics__grid {
        grid-template-columns: 1fr;
    }

    /* Quote */
    .cs-quote__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cs-quote__image-block {
        order: -1;
    }

    .cs-quote__badge {
        display: none;
    }

    .cs-quote__video-wrap {
        max-width: 280px;
        max-height: none;
        height: auto;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    /* Checklist */
    .cs-checklist__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .cs-checklist__card-title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    /* Workflow strip: title stacks above steps, steps stay row */
    .cs-checklist__workflow {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
    }

    /* Crew */
    .cs-crew .cs-section__header {
        margin-bottom: 0;
    }

    .cs-crew__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 1rem;
    }

    .cs-crew__features {
        gap: 1.25rem;
    }

    .cs-crew__timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs-crew__stat-badge {
        display: none;
    }

    .cs-crew__photo {
        max-height: 400px;
        object-fit: cover;
    }

    /* FAQ */
    .cs-faq {
        padding-bottom: 0;
    }

    .faq-section__container {
        padding: 4rem 2rem;
        border-radius: 0;
    }

    /* Resources */
    .cs-resources__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA */
    .cs-cta__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- Tablet (≤768px) ---- */
@media (max-width: 768px) {
    /* Section spacing */
    .cs-metrics,
    .cs-quote,
    .cs-story,
    .cs-workflow,
    .cs-checklist,
    .cs-crew,
    .cs-resources,
    .cs-faq,
    .cs-cta {
        padding: 4rem 0;
    }

    /* Section container horizontal padding — match hero */
    .cs-quote__container,
    .cs-story__container,
    .cs-workflow__container,
    .cs-checklist__container,
    .cs-crew__container,
    .cs-resources__container,
    .cs-cta__container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Section header typography */
    .cs-section__title {
        font-size: 2rem;
    }

    .cs-section__subtitle {
        font-size: 1.125rem;
    }

    .cs-section__header {
        margin-bottom: 2.5rem;
    }

    /* Hide manual line breaks — let text reflow naturally */
    .cs-section__subtitle br,
    .cs-hero__subtitle br,
    .cs-cta__subtitle br {
        display: none;
    }

    /* Hero */
    .cs-hero__tags {
        flex-wrap: wrap;
    }

    .cs-hero__title {
        font-size: 2rem;
    }

    .cs-hero__subtitle {
        font-size: 1.125rem;
    }

    .cs-hero__container {
        padding: 4rem 1rem;
    }

    .cs-hero__cards {
        grid-template-columns: 1fr;
    }

    /* Metrics */
    .cs-metrics__container {
        padding: 0 1rem;
    }

    .cs-metrics__grid {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: left;
    }

    .cs-metric {
        align-items: flex-start;
        padding: 2rem 0;
        border-bottom: 1px solid var(--grey-03);
    }

    .cs-metric:first-child {
        padding-top: 0;
    }

    .cs-metric:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .cs-metric__value {
        font-size: 2.25rem;
    }

    .cs-metric__label {
        font-size: 1.125rem;
    }

    .cs-metric__desc {
        font-size: 1rem;
    }

    /* Quote */
    .cs-quote__video-wrap {
        max-height: none;
        border-radius: 0.75rem;
    }

    .cs-quote__icon {
        font-size: 8rem;
    }

    .cs-quote__text {
        font-size: 1.25rem;
    }

    .cs-quote__secondary {
        font-size: 1rem;
        padding: 0.625rem 1rem;
    }

    .cs-quote__avatar {
        width: 64px;
        height: 64px;
        min-width: 64px;
    }

    /* Workflow section */
    .cs-workflow__grid {
        grid-template-columns: 1fr;
    }

    /* Checklist workflow strip */
    .cs-checklist__workflow {
        padding: 2rem;
    }

    .cs-checklist__workflow-title {
        font-size: 1.5rem;
    }

    /* Crew */
    .cs-crew__feature-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .cs-crew__photo {
        max-height: 360px;
    }

    .cs-crew__stat-badge {
        min-width: 100px;
        padding: 1rem 1.25rem;
    }

    .cs-crew__stat-badge strong {
        font-size: 2rem;
    }

    .cs-crew__stat-badge span {
        font-size: 0.75rem;
    }

    /* FAQ */
    .cs-faq {
        padding-bottom: 0;
    }

    .faq-section__container {
        border-radius: 0;
        padding: 4rem 1.5rem;
    }

    .faq-section__header {
        margin-bottom: 2.5rem;
    }

    .faq-item__trigger {
        padding: 1.25rem 1.5rem;
    }

    /* Resources */
    .cs-resources__grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cs-cta__title {
        font-size: 2rem;
    }

    .cs-cta__subtitle {
        font-size: 1.125rem;
    }

    .cs-cta__cards {
        grid-template-columns: 1fr 1fr;
    }

    .cs-cta__features {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cs-cta__btn-primary,
    .cs-cta__btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ---- Mobile (≤480px) ---- */
@media (max-width: 480px) {
    /* Section spacing */
    .cs-metrics,
    .cs-quote,
    .cs-story,
    .cs-workflow,
    .cs-checklist,
    .cs-crew,
    .cs-resources,
    .cs-faq,
    .cs-cta {
        padding: 3rem 0;
    }

    .cs-quote { padding: 4rem 0; }

    /* Section container horizontal padding — match hero */
    .cs-quote__container,
    .cs-story__container,
    .cs-workflow__container,
    .cs-checklist__container,
    .cs-crew__container,
    .cs-resources__container,
    .cs-cta__container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Section header typography */
    .cs-section__title {
        font-size: 1.75rem;
    }

    .cs-section__subtitle {
        font-size: 1rem;
    }

    .cs-section__header {
        margin-bottom: 2rem;
    }

    /* Hero */
    .cs-hero__title {
        font-size: 1.75rem;
    }

    .cs-hero__subtitle {
        font-size: 1rem;
    }

    .cs-hero__container {
        padding: 4rem 1rem;
    }

    /* Metrics — 1 per row */
    .cs-metrics__container {
        padding: 0 1rem;
    }

    .cs-metrics__grid {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: left;
    }

    .cs-metric {
        align-items: flex-start;
        padding: 1.75rem 0;
        border-bottom: 1px solid var(--grey-03);
    }

    .cs-metric:first-child {
        padding-top: 0;
    }

    .cs-metric:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .cs-metric__value {
        font-size: 2rem;
    }

    /* Quote */
    .cs-quote__video-wrap {
        max-width: 100%;
        max-height: none;
        height: 480px;
        margin-bottom: 1.5rem;
    }

    .cs-quote__icon {
        font-size: 6rem;
    }

    .cs-quote__text {
        font-size: 1.1rem;
    }

    .cs-quote__secondary {
        font-size: 0.9rem;
    }

    /* Checklist workflow strip: stack steps vertically on small mobile */
    .cs-checklist__workflow {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .cs-checklist__workflow-title {
        font-size: 1.25rem;
        text-align: center;
    }

    .cs-checklist__workflow-steps {
        flex-direction: column;
        align-items: stretch;
    }

    .cs-checklist__workflow-arrow {
        transform: rotate(90deg);
        align-self: center;
    }

    /* Crew */
    .cs-crew__grid {
        margin-top: 3rem;
    }

    .cs-crew__image-wrap,
    .cs-crew__image-inner,
    .cs-crew__photo {
        border-radius: 0.75rem;
    }

    .cs-crew__timeline {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: none;
    }

    .cs-crew__timeline-grid {
        grid-template-columns: 1fr;
    }

    .cs-crew__photo {
        max-height: 280px;
    }

    .cs-crew__feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 10px;
    }

    .cs-crew__stat-badge {
        min-width: 80px;
        padding: 0.875rem 1rem;
    }

    .cs-crew__stat-badge strong {
        font-size: 1.75rem;
    }

    .cs-crew__stat-badge span {
        font-size: 0.7rem;
    }

    /* FAQ */
    .cs-faq {
        padding-bottom: 0;
    }

    .faq-section__container {
        padding: 4rem 1rem;
        border-radius: 0;
    }

    .faq-section__header {
        margin-bottom: 2rem;
    }

    .faq-item__trigger {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Resources */
    .cs-resources__grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cs-cta__title {
        font-size: 1.75rem;
    }

    .cs-cta__subtitle {
        font-size: 1rem;
    }

    .cs-cta__cards {
        grid-template-columns: 1fr;
    }

    .cs-cta__btn-primary,
    .cs-cta__btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* CTA trust items: single row with pipe separators */
    .cs-cta__features {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0;
        justify-content: center;
        align-items: center;
    }

    .cs-cta__feature-item {
        white-space: nowrap;
        gap: 0;
        font-size: 0.75rem;
    }

    .cs-cta__feature-item i,
    .cs-cta__feature-item svg {
        display: none;
    }

    .cs-cta__feature-item + .cs-cta__feature-item::before {
        content: '|';
        padding: 0 0.4rem;
        color: rgba(255, 255, 255, 0.3);
    }
}
