/* === Framework page === */
.fw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* === BUTTONS === */
.fw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.fw-btn-primary {
    background-color: #34d399;
    color: #020617;
}

.fw-btn-primary:hover {
    background-color: #6ee7b7;
    transform: translateY(-2px);
}

.fw-btn-secondary {
    background-color: transparent;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fw-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* === SECTION HEADER === */
.fw-section-header {
    margin-bottom: 3rem;
}

.fw-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #34d399;
    margin-bottom: 1rem;
}

.fw-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

@media (max-width: 768px) {
    .fw-section-title {
        font-size: 1.875rem;
    }
}

.fw-section-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 700px;
}

/* === HERO SECTION === */
.fw-hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #0c152e 100%);
    padding: 3rem 0;
}

.fw-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.fw-hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 968px) {
    .fw-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.fw-hero-text h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.fw-hero-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.fw-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}


.fw-image-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.fw-image-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.fw-image-subtitle {
    font-size: 0.875rem;
    color: #cbd5e1;
}

/* === STRUCTURE SECTION === */
.fw-structure-section {
    padding: 3rem 0;
}

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

@media (max-width: 768px) {
    .fw-structure-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.fw-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.fw-info-card:hover {
    border-color: rgba(52, 211, 153, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.fw-card-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #34d399;
    margin-bottom: 0.75rem;
    display: block;
}

.fw-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.fw-card-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #cbd5e1;
}

/* === PILLARS SECTION === */
.fw-pillars-section {
    padding: 3rem 0;
}

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

@media (max-width: 768px) {
    .fw-pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.fw-pillar-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.9rem;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.fw-pillar-card:hover {
    border-color: rgba(52, 211, 153, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.fw-pillar-image {
    width: 100%;
    object-fit: cover;
    border-radius: 1.25rem;
    margin-bottom: 1.25rem;
}

.fw-pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.75rem;
}

.fw-pillar-description {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.fw-pillar-link {
    color: #34d399;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.fw-pillar-link:hover {
    gap: 0.75rem;
}

/* === CONNECTION SECTION === */
.fw-connection-section {
    padding: 3rem 0;
}

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

@media (max-width: 768px) {
    .fw-step-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.fw-step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fw-step-card:hover {
    border-color: rgba(52, 211, 153, 0.3);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.fw-step-number {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #34d399;
    margin-bottom: 0.75rem;
    display: block;
}

.fw-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.fw-step-description {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #cbd5e1;
}

/* === CTA BAND === */
.fw-cta-band {
    margin-top: 4rem;
    padding: 3rem;
    border-radius: 2rem;
    text-align: center;
    border: 1.5px solid #34d399;
}

.fw-cta-band h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.fw-cta-band p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.fw-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .fw-section-title {
        font-size: 1.75rem;
    }

    .fw-hero-buttons,
    .fw-cta-buttons {
        flex-direction: column;
    }

    .fw-btn {
        width: 100%;
    }

    .fw-cta-band {
        padding: 2rem;
    }

    .fw-cta-band h2 {
        font-size: 1.5rem;
    }
}

/* ===== HERO SECTION ===== */

.gs-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 2rem;
}

.gs-hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #34d399;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.gs-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #f8fafc;
    margin-bottom: 20px;
    max-width: 900px;
}

.gs-hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 900px;
}

.gs-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.gs-button {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.gs-button-primary {
    background-color: #0f172a;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gs-button-primary:hover {
    background-color: #1a2744;
    border-color: #34d399;
}

.gs-button-secondary {
    background: transparent;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gs-button-secondary:hover {
    border-color: #34d399;
    color: #34d399;
}

/* ===== INFO SECTION ===== */
.gs-info-section {
    background-color: #0c152e;
    padding: 30px 20px;
}

.gs-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gs-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.gs-info-card {
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.gs-info-card-light {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid #34d399;
}

.gs-info-card-light:hover {
    border-color: rgba(52, 211, 153, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gs-info-title {
    font-size: 24px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gs-info-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.gs-info-list {
    list-style: none;
}

.gs-info-list li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.gs-info-list li:before {
    content: "•";
    color: #34d399;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* ===== STAGES SECTION ===== */
.gs-stages-section {
    background-color: #0c152e;
    padding: 60px 20px;
}

.gs-stages-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gs-stages-header {
    margin-bottom: 60px;
}

.gs-stages-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #34d399;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.gs-stages-title {
    font-size: 42px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0;
    max-width: 800px;
    line-height: 1.2;
}

.gs-stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.gs-stage-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.gs-stage-card:hover {
    border-color: rgba(52, 211, 153, 0.3);
    background: rgba(52, 211, 153, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.gs-stage-title {
    font-size: 24px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
}

.gs-stage-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    flex-grow: 1;
    margin-bottom: 20px;
}

.gs-stage-link {
    font-size: 14px;
    font-weight: 600;
    color: #34d399;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
}

.gs-stage-link:hover {
    gap: 8px;
}

.gs-stage-link::after {
    content: "→";
}

/* ===== CTA SECTION ===== */
.gs-cta-section {
    background: linear-gradient(135deg, #0c152e 0%, #0f172a 60%, rgba(52, 211, 153, 0.05) 100%);
    padding: 80px 20px;
    text-align: center;
}

.gs-cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.gs-cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 20px;
}

.gs-cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.gs-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .gs-hero-section,
    .gs-info-section,
    .gs-stages-section,
    .gs-cta-section {
        padding: 30px 16px;
    }

    .gs-hero-title {
        font-size: 36px;
    }

    .gs-stages-title {
        font-size: 32px;
    }

    .gs-info-grid,
    .gs-stages-grid {
        grid-template-columns: 1fr;
    }

    .gs-hero-buttons,
    .gs-cta-buttons {
        flex-direction: column;
    }

    .gs-button {
        width: 100%;
        justify-content: center;
    }

    .gs-cta-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .gs-hero-section,
    .gs-info-section,
    .gs-stages-section,
    .gs-cta-section {
        padding: 40px 16px;
    }

    .gs-hero-title,
    .gs-stages-title,
    .gs-cta-title {
        font-size: 26px;
    }

    .gs-info-title {
        font-size: 20px;
    }

    .gs-stage-title {
        font-size: 20px;
    }

    .gs-info-list li {
        font-size: 14px;
    }
}



.sv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* === BUTTONS === */
.sv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.sv-btn-primary {
    background-color: #34d399;
    color: #020617;
}

.sv-btn-primary:hover {
    background-color: #6ee7b7;
    transform: translateY(-2px);
}

.sv-btn-secondary {
    background-color: transparent;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sv-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* === SECTION HEADER === */
.sv-section-header {
    margin-bottom: 3rem;
}

.sv-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #34d399;
    margin-bottom: 1rem;
}

.sv-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

@media (max-width: 768px) {
    .sv-section-title {
        font-size: 1.875rem;
    }
}

.sv-section-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 900px;
}

/* === HERO SECTION === */
.sv-hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #0c152e 100%);
    padding: 3rem 0;
}

.sv-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sv-hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 968px) {
    .sv-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.sv-hero-text h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.sv-hero-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.sv-hero-image {
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    overflow: hidden;
}

.sv-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.sv-image-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.sv-image-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.sv-image-subtitle {
    font-size: 0.875rem;
    color: #cbd5e1;
}

/* === SERVICES SECTION === */
.sv-services-section {
    padding: 3rem 0;
}

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

@media (max-width: 768px) {
    .sv-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.sv-service-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.9rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sv-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(52, 211, 153, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sv-service-card:hover {
    border-color: rgba(52, 211, 153, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.sv-service-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.sv-service-description {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.sv-deliverables-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #34d399;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
}

.sv-deliverables-list {
    list-style: none;
    position: relative;
    z-index: 1;
}

.sv-deliverables-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.sv-deliverables-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #34d399;
    border-radius: 50%;
    flex-shrink: 0;
}

/* === CTA SECTION === */
.sv-cta-section {
    padding: 4rem 0;
    text-align: center;
}

.sv-cta-band {
    padding: 3rem;
    border: 1.5px solid #34d399;
    border-radius: 2rem;
    text-align: center;
}

.sv-cta-band h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.sv-cta-band p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sv-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .sv-section-title {
        font-size: 1.75rem;
    }

    .sv-cta-buttons {
        flex-direction: column;
    }

    .sv-btn {
        width: 100%;
    }

    .sv-cta-band {
        padding: 2rem;
    }

    .sv-cta-band h2 {
        font-size: 1.5rem;
    }

    .sv-service-card {
        padding: 1.5rem;
    }

    .sv-service-title {
        font-size: 1.5rem;
    }
}
.sv-cta-link {
    color: #34d399;
}

/* ===== HERO SECTION ===== */
.stage-hero-section {
    background-color: #0c152e;
    
}

.stage-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 2rem;
}

.stage-hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #34d399;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.stage-hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: #f8fafc;
    margin-bottom: 20px;
}

.stage-hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 900px;
}

.stage-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.stage-button {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.stage-button-primary {
    background-color: #0f172a;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stage-button-primary:hover {
    background-color: #1a2744;
    border-color: #34d399;
}

.stage-button-secondary {
    background: transparent;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stage-button-secondary:hover {
    border-color: #34d399;
    color: #34d399;
}

/* ===== CARD SECTIONS ===== */
.stage-section {
    background-color: #0c152e;
    padding: 40px 20px;
}

.stage-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stage-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.stage-card {
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.stage-card-light {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stage-card-light:hover {
    border-color: rgba(52, 211, 153, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stage-card-dark {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(52, 211, 153, 0.15);
}

.stage-card-dark:hover {
    border-color: rgba(52, 211, 153, 0.3);
}

.stage-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 20px;
}

.stage-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.stage-card-list {
    list-style: none;
}

.stage-card-list li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.stage-card-list li:before {
    content: "•";
    color: #34d399;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.stage-single-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
}

.stage-single-card:hover {
    border-color: rgba(52, 211, 153, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== CTA SECTION ===== */
.stage-cta-section {
    background: linear-gradient(135deg, #0c152e 0%, #0f172a 60%, rgba(52, 211, 153, 0.05) 100%);
    padding: 80px 20px;
    text-align: center;
}

.stage-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    border: 1.5px solid #34d399;
    border-radius: 2rem;
    text-align: center;
}

.stage-cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 20px;
}

.stage-cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.stage-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .stage-grid-2col {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .stage-hero-section,
    .stage-section,
    .stage-cta-section {
        padding: 40px 1rem;
    }

    .stage-hero-title {
        font-size: 36px;
    }

    .stage-hero-buttons,
    .stage-cta-buttons {
        flex-direction: column;
    }

    .stage-button {
        width: 100%;
        justify-content: center;
    }

    .stage-cta-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .stage-hero-section,
    .stage-section,
    .stage-cta-section {
        padding: 40px 16px;
    }

    .stage-hero-title {
        font-size: 28px;
    }

    .stage-card-title {
        font-size: 20px;
    }

    .stage-card-text,
    .stage-card-list li {
        font-size: 14px;
    }
}

/* ===== HERO SECTION ===== */
.gs-hero-section {
    background-color: #0c152e;
    padding: 40px 20px;
}

.gs-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gs-hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #34d399;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.gs-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #f8fafc;
    margin-bottom: 20px;
    max-width: 900px;
}

.gs-hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 900px;
}

.gs-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.gs-button {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.gs-button-primary {
    background-color: #0f172a;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gs-button-primary:hover {
    background-color: #1a2744;
    border-color: #34d399;
}

.gs-button-secondary {
    background: transparent;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gs-button-secondary:hover {
    border-color: #34d399;
    color: #34d399;
}

/* ===== INFO CARDS ===== */

.gs-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gs-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.gs-info-card {
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.gs-info-card-light {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gs-info-card-dark {
    background: rgba(52, 211, 153, 0.05);
    border: 1px solid rgba(52, 211, 153, 0.15);
}

.gs-info-card-light:hover {
    border-color: rgba(52, 211, 153, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gs-info-card-dark:hover {
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 20px 40px rgba(52, 211, 153, 0.1);
}

.gs-info-title {
    font-size: 20px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
}

.gs-info-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.gs-info-list {
    list-style: none;
}

.gs-info-list li {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.gs-info-list li:before {
    content: "•";
    color: #34d399;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ===== QUIZ SECTION ===== */

.gs-quiz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 2rem;
}

.gs-progress-bar {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    height: 8px;
    overflow: hidden;
}

.gs-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #34d399, #6ee7b7);
    transition: width 0.3s ease;
    width: 0%;
}

.gs-progress-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    text-align: right;
}

.gs-questions-container {
    display: none;
}

.gs-questions-container.active {
    display: block;
}

.gs-question-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
    margin-bottom: 24px;
}

.gs-question-number {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.gs-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 24px;
}

.gs-answer-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
}

.gs-answer-btn {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.gs-answer-btn:hover {
    border-color: #34d399;
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
}

.gs-answer-btn.selected {
    border-color: #34d399;
    background: rgba(52, 211, 153, 0.2);
    color: #34d399;
}

/* ===== RESULTS SECTION ===== */
.gs-results-section {
    display: none;
    background-color: #0c152e;
    padding: 40px 2rem;
}

.gs-results-section.active {
    display: block;
}

.gs-results-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gs-results-header {
    text-align: center;
    margin-bottom: 30px;
}

.gs-results-badge {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #34d399;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.gs-results-title {
    font-size: 40px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
}

.gs-results-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
}

.gs-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 20px;
}

.gs-results-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
}

.gs-results-card-dark {
    background: rgba(52, 211, 153, 0.05);
    border: 1px solid rgba(52, 211, 153, 0.15);
}

.gs-score-chart {
    margin-bottom: 24px;
}

.gs-score-item {
    margin-bottom: 20px;
}

.gs-score-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.gs-score-name {
    font-weight: 600;
    color: #f8fafc;
}

.gs-score-band {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.gs-score-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.gs-score-fill {
    height: 100%;
    background: linear-gradient(90deg, #34d399, #6ee7b7);
}

.gs-summary-box {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 16px;
    padding: 24px 20px;
    margin-top: 24px;
}

.gs-summary-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(52, 211, 153, 0.8);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gs-summary-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.gs-results-message {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.gs-results-message strong {
    color: #34d399;
}

.gs-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .gs-hero-section {
        padding: 30px 16px;
    }

    .gs-hero-title {
        font-size: 36px;
    }

    .gs-hero-subtitle {
        font-size: 16px;
    }

    .gs-hero-buttons {
        flex-direction: column;
    }

    .gs-button {
        width: 100%;
        justify-content: center;
    }

    .gs-info-grid {
        grid-template-columns: 1fr;
    }

    .gs-question-card {
        padding: 30px 24px;
    }

    .gs-answer-options {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }

    .gs-results-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gs-results-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .gs-hero-section {
        padding: 40px 16px;
    }

    .gs-hero-title {
        font-size: 28px;
    }

    .gs-question-card {
        padding: 24px 16px;
    }

    .gs-question-text {
        font-size: 16px;
    }

    .gs-answer-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .gs-answer-btn {
        padding: 10px 12px;
        font-size: 12px;
    }
}

.industries.who-we-work-section {
    padding: 0;
}



/* === HERO SECTION === */
.growsilk-hero-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

.growsilk-hero-glow {
    position: absolute;
    top: -8rem;
    right: -10%;
    width: 640px;
    height: 256px;
    background-color: rgba(52, 211, 153, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.growsilk-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .growsilk-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.growsilk-hero-content {
    display: flex;
    flex-direction: column;
}

.growsilk-hero-image-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.growsilk-hero-image-card {
    background-color: #0c152e;
    border: 1px solid rgba(52, 211, 153, 0.4);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px rgba(52, 211, 153, 0.25);
}

.growsilk-hero-image-label {
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a7f3d0;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.growsilk-hero-image-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.growsilk-hero-image-text {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.growsilk-hero-image-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.1) 0%, rgba(52, 211, 153, 0.05) 100%);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.875rem;
    text-align: center;
    padding: 1rem;
}

.growsilk-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a7f3d0;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.growsilk-hero-headline {
    max-width: 48rem;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #f8fafc;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .growsilk-hero-headline {
        font-size: 2.6rem;
    }
}

.growsilk-hero-description {
    max-width: 36rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.growsilk-hero-checklist {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.growsilk-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.growsilk-check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #34d399;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.growsilk-hero-tagline {
    font-size: 0.6875rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #64748b;
    margin-top: 0.5rem;
}

/* === CONTAINER === */
.growsilk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === CARDS & SECTIONS === */
.growsilk-card {
    background-color: #0c152e;
    border: 1px solid rgba(52, 211, 153, 0.4);
    box-shadow: 0 10px 15px rgba(52, 211, 153, 0.25);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 4rem;
    transition: all 0.2s ease;
}

.growsilk-card:hover {
    box-shadow: 0 10px 20px rgba(52, 211, 153, 0.3);
    transform: translateY(-2px);
}

.growsilk-card.bg-light {
    background-color: rgba(15, 23, 42, 0.6);
}

.growsilk-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.growsilk-card-description {
    color: #cbd5e1;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* === PROBLEM LIST === */
.growsilk-problem-list {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .growsilk-problem-list {
        grid-template-columns: 1fr 1fr;
    }
}

.growsilk-problem-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: #e2e8f0;
    font-size: 0.875rem;
}

.growsilk-problem-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #34d399;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* === SYSTEM BOXES === */
.growsilk-system-grid {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .growsilk-system-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.growsilk-system-box {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 0.875rem;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 500;
    color: #f8fafc;
}

.growsilk-system-flow {
    border: 1px solid #34d399;
    background-color: rgba(52, 211, 153, 0.1);
    color: #a7f3d0;
    border-radius: 0.875rem;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
}

/* === GRID LAYOUTS === */
.growsilk-grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .growsilk-grid-2-col {
        grid-template-columns: 1fr 1fr;
    }
}

/* === FAQ SECTION === */
.growsilk-faq-list {
    display: grid;
    gap: 0.75rem;
}

.growsilk-faq-item {
    background-color: transparent;
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: all 0.2s ease;
}

.growsilk-faq-item:hover {
    border-color: rgba(52, 211, 153, 0.5);
    background-color: rgba(52, 211, 153, 0.05);
}

.growsilk-faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: #f8fafc;
    margin: 0;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: color 0.2s ease;
}

.growsilk-faq-question:hover {
    color: #a7f3d0;
}

.growsilk-faq-chevron {
    width: 1.25rem;
    height: 1.25rem;
    color: #34d399;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.growsilk-faq-item.active .growsilk-faq-chevron {
    transform: rotate(180deg);
}

.growsilk-faq-answer {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0;
    padding-top: 0;
}

.growsilk-faq-item.active .growsilk-faq-answer {
    max-height: 500px;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(52, 211, 153, 0.2);
}



.growsilk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
}

.growsilk-btn-primary {
    background-color: #34d399;
    color: #020617;
}

.growsilk-btn-primary:hover {
    background-color: #6ee7b7;
}

.growsilk-btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(52, 211, 153, 0.4);
    color: #a7f3d0;
}

.growsilk-btn-secondary:hover {
    background-color: rgba(52, 211, 153, 0.1);
}

.growsilk-quote-card {
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 1.5rem;
    background-color: rgba(15, 23, 42, 0.6);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.growsilk-quote-content {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: #cbd5e1;
    line-height: 1.75;
    font-size: 0.875rem;
}

.growsilk-quote-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
    color: #34d399;
    flex-shrink: 0;
}

/* === SECTION SPACING === */
.growsilk-section {
    padding: 3rem 0;
}

.growsilk-section:first-child {
    border-top: none;
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
    .growsilk-hero-headline {
        font-size: 1.75rem;
    }

    .growsilk-hero-description {
        font-size: 0.875rem;
    }

    .growsilk-card {
        padding: 1.5rem;
    }

}
.industry .fw-cta-band {
    margin-top: 2rem;
}

/* === STYLES FOR SPECIFIC Frameworks === */
.frameworks {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #0c152e 100%);
    color: #f8fafc;
    line-height: 1.6;
}

.frameworks .container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === BUTTONS === */
.frameworks .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
    font-family: inherit;
}

.frameworks .btn-primary {
    background-color: #34d399;
    color: #020617;
}

.frameworks .btn-primary:hover {
    background-color: #6ee7b7;
    transform: translateY(-2px);
}

.frameworks .btn-secondary {
    background-color: transparent;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.frameworks .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* === SECTION HEADER === */
.frameworks .section-header {
    margin-bottom: 3rem;
}

.frameworks .eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #34d399;
    margin-bottom: 1rem;
}

.frameworks .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.frameworks .section-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 700px;
}

/* === HERO SECTION === */
.frameworks .hero-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.frameworks .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.frameworks .hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 968px) {
    .frameworks .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.frameworks .hero-text h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.frameworks .hero-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.frameworks .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.frameworks .image-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.frameworks .image-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.frameworks .image-subtitle {
    font-size: 0.875rem;
    color: #cbd5e1;
}

/* === IMAGE PLACEHOLDER === */


/* === VIDEO PLACEHOLDER === */
.frameworks .video-placeholder {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.1) 0%, rgba(52, 211, 153, 0.05) 100%);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    cursor: pointer;
}

.frameworks .video-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(52, 211, 153, 0.2);
    border: 2px solid #34d399;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.frameworks .video-placeholder:hover .video-play-btn {
    background: rgba(52, 211, 153, 0.3);
    transform: scale(1.1);
}

.frameworks .video-play-icon {
    width: 0;
    height: 0;
    border-left: 25px solid #34d399;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

/* === SECTION === */
.frameworks .section {
    padding: 3rem 0;
}

/* === THREE-CARD BLOCK WITH ICONS === */
.frameworks .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    .frameworks .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.frameworks .card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.frameworks .card:hover {
    border-color: rgba(52, 211, 153, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.frameworks .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(52, 211, 153, 0.1);
    border: 2px solid rgba(52, 211, 153, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 28px;
    color: #34d399;
}

.frameworks .card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #34d399;
    margin-bottom: 0.75rem;
    display: block;
}

.frameworks .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.frameworks .card-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.frameworks .card-bullets {
    list-style: none;
}

.frameworks .card-bullets li {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.frameworks .card-bullets li::before {
    content: '•';
    color: #34d399;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* === TWO-COLUMN SECTION === */
.frameworks .two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 768px) {
    .frameworks .two-col-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* === CONTENT BOX === */
.frameworks .content-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.frameworks .content-box:hover {
    border-color: rgba(52, 211, 153, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.frameworks .content-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.frameworks .content-box p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.frameworks .content-box ul {
    list-style: none;
}

.frameworks .content-box ul li {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
    position: relative;
}

.frameworks .content-box ul li::before {
    content: '•';
    color: #34d399;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* === MINI BLOCKS WITH ICONS === */
.frameworks .mini-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .frameworks .mini-blocks {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.frameworks .mini-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.frameworks .mini-block-icon {
    width: 50px;
    height: 50px;
    background: rgba(52, 211, 153, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #34d399;
    font-size: 24px;
}

.frameworks .mini-block h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.frameworks .mini-block p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #cbd5e1;
}

/* === OFFER BLOCK === */
.frameworks .offer-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    padding: 2rem;
    margin-top: 2rem;
}

.frameworks .offer-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.frameworks .offer-block p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

/* === READINESS BLOCK === */
.frameworks .readiness-block {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.05) 0%, rgba(52, 211, 153, 0.02) 100%);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 1.75rem;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.frameworks .readiness-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.frameworks .readiness-block p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.frameworks .readiness-cta {
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.frameworks .readiness-microcopy {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.75rem;
}

/* === FAQ SECTION === */
.frameworks .faq-section {
    padding: 2rem 0;
}

.frameworks .faq-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.frameworks .faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.frameworks .faq-item:hover {
    border-color: rgba(52, 211, 153, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.frameworks .faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: #f8fafc;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.frameworks .faq-chevron {
    width: 1.25rem;
    height: 1.25rem;
    color: #34d399;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: inline-block;
}

.frameworks .faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.frameworks .faq-answer {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0;
    padding-top: 0;
}

.frameworks .faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(52, 211, 153, 0.2);
}

/* === FINAL CTA BAND === */
.frameworks .cta-band {
    margin-top: 4rem;
    padding: 3rem;
    border-radius: 2rem;
    text-align: center;
    border: 1.5px solid #34d399;
    background: transparent;
}

.frameworks .cta-band h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.frameworks .cta-band p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.frameworks .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .frameworks .section-title {
        font-size: 1.75rem;
    }

    .frameworks .hero-text h1 {
        font-size: 1.75rem;
    }

    .frameworks .cta-band {
        padding: 2rem;
    }

    .frameworks .cta-band h2 {
        font-size: 1.5rem;
    }

    .frameworks .btn {
        width: 100%;
    }
}


/* SECTION BASE STYLES */
.methodology-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 4rem;
    padding-bottom: 3rem;
}
 
.methodology-section .section-header {
    margin-bottom: 3rem;
}
 
/* EYEBROW / LABEL */
.methodology-section .eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #34d399;
    margin-bottom: 1rem;
}
 
.methodology-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}
 
.methodology-section .section-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 700px;
}
 
/* ================================================
   STEP CARDS
   ================================================ */
 
.step-card {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    overflow: hidden;
}
 
.step-card-inner {
    padding: 3rem 2rem;
}
 
/* Step Header with Badge */
.methodology-section .step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: normal;
}
 
.step-badge {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.3) 0%, rgba(52, 211, 153, 0.1) 100%);
    border: 2px solid #34d399;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #34d399;
    font-size: 1.5rem;
    flex-shrink: 0;
}
 
.step-title-wrapper .step-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #34d399;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    display: block;
    margin-bottom: 0.25rem;
}
 
.step-title-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin: 0;
}
 
/* Step Main Content */
.step-main-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
}
 
.step-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}
 
/* Info Box */
.step-info-box {
    background: rgba(52, 211, 153, 0.05);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 1.25rem;
    padding: 1.5rem;
}
 
.step-info-box.light-bg {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
 
.step-info-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #34d399;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1rem;
    display: block;
}
 
/* Lists */
.step-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
 
.step-info-list li {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
    position: relative;
}
 
.step-info-list li:last-child {
    margin-bottom: 0;
}
 
.step-info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #34d399;
    font-weight: 700;
    font-size: 1rem;
}
 
/* ================================================
   RIGHT COLUMN - QUESTIONS & VISUALIZATION
   ================================================ */
 
.step-right-column {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.05) 0%, rgba(52, 211, 153, 0.02) 100%);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
}
 
/* Questions Grid */
.questions-grid {
    display: grid;
    gap: 1rem;
}
 
.question-item {
    border-radius: 1rem;
    padding: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #dce9f8;
}
 
.question-item-highlighted {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
}
 
.question-item-default {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
 
/* Core Asset Box */
.core-asset-box {
    margin-top: 1rem;
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 1rem;
    padding: 1.25rem;
}
 
.core-asset-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #34d399;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.5rem;
    display: block;
}
 
.core-asset-title {
    font-size: 1rem;
    font-weight: 600;
    color: #f8fafc;
    margin: 0 0 0.25rem 0;
}
 
.core-asset-subtitle {
    font-size: 0.875rem;
    color: #cbd5e1;
    margin: 0;
}
 
/* ================================================
   FORMAT GRID (STEP 2)
   ================================================ */
 
.formats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
 
.format-item {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
 
.format-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #34d399;
}
 
/* ================================================
   VISUALIZATIONS
   ================================================ */
 
/* Core Article Visual */
.core-article-visual {
    width: 100px;
    height: 100px;
    background: rgba(52, 211, 153, 0.15);
    border: 2px solid rgba(52, 211, 153, 0.4);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
}
 
.asset-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #34d399;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.5rem;
    display: block;
}
 
.asset-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}
 
.asset-description {
    font-size: 0.875rem;
    color: #cbd5e1;
}
 
.asset-divider {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(52, 211, 153, 0.3);
}
 
.asset-types {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0.75rem;
}
 
.asset-type {
    font-size: 0.75rem;
    color: #cbd5e1;
}
 
/* ================================================
   DISTRIBUTION GRID (STEP 3)
   ================================================ */
 
.distribution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}
 
.distribution-item {
    background: rgba(52, 211, 153, 0.05);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 1rem;
    padding: 1rem;
}
 
.distribution-item-icon {
    font-size: 0.875rem;
    font-weight: 600;
    color: #34d399;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
 
.distribution-item-icon-emoji {
    font-size: 1.25rem;
    color: #34d399;
}
 
.distribution-item-text {
    font-size: 0.75rem;
    color: #cbd5e1;
}
 
/* Concentric Circles Visualization */
.concentric-circles {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
}
 
.circle {
    position: absolute;
    border: 1px dashed rgba(52, 211, 153, 0.3);
    border-radius: 50%;
}
 
.circle-1 {
    inset: 10%;
}
 
.circle-2 {
    inset: 20%;
}
 
.circle-3 {
    inset: 30%;
}
 
.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(52, 211, 153, 0.15);
    border: 2px solid rgba(52, 211, 153, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
}
 
.center-circle-icon {
    font-size: 1.5rem;
    color: #34d399;
}
 
.center-circle-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #34d399;
    margin-top: 0.5rem;
}
 
/* ================================================
   TIMELINE SECTION
   ================================================ */
 
.timeline-section {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.05) 0%, rgba(52, 211, 153, 0.02) 100%);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 1.75rem;
    padding: 2rem;
}
 
.timeline-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #34d399;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1.5rem;
    display: block;
}
 
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
 
.timeline-item {
    display: flex;
    flex-direction: column;
}
 
.timeline-weeks {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}
 
.timeline-content {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.6;
}
 
.timeline-content strong {
    color: #34d399;
    font-weight: 600;
}
 
/* ================================================
   TWO COLUMN LAYOUT
   ================================================ */
 
.methodology-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
 
/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
 
@media (max-width: 1024px) {
    .methodology-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
 
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
 
    .visualization-box {
        min-height: 350px;
    }
}
 
@media (max-width: 768px) {
    .methodology-section {
        padding-top: 2rem;
    }
 
    .step-card-inner {
        padding: 2rem 1.5rem;
    }
 
    .methodology-two-col {
        grid-template-columns: 1fr;
    }
 
    .methodology-section .section-title {
        font-size: 1.75rem;
    }
 
    .formats-grid {
        grid-template-columns: 1fr;
    }
 
    .distribution-grid {
        grid-template-columns: 1fr;
    }
 
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
 
    .visualization-box,
    .concentric-circles {
        min-height: 300px;
    }
 
    .concentric-circles {
        width: 150px;
        height: 150px;
    }
 
    .step-badge {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
 
    .step-header {
        gap: 0.75rem;
    }
 
    .step-title-wrapper h3 {
        font-size: 1.25rem;
    }
}
 
@media (max-width: 480px) {
    .methodology-section .section-title {
        font-size: 1.5rem;
    }
 
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
 
    .distribution-grid {
        grid-template-columns: 1fr;
    }
 
    .step-main-title {
        font-size: 1.25rem;
    }
 
    .formats-grid {
        grid-template-columns: 1fr;
    }
}

.intent-cection {
    max-width: 1200px;
    margin: 0 auto;
}

/* Foundation Section */
    .foundation-section {
        padding: 30px 0;
    }
 
    /* Banner Container */
    .foundation-banner {
        margin-bottom: 20px;
    }
 
    /* Header */
    .foundation-header {
        margin-bottom: 48px;
        text-align: center;
    }
 
    .foundation-title {
        font-size: 32px;
        font-weight: 500;
        color: var(--color-text-primary);
        margin: 12px 0 12px 0;
        line-height: 1.3;
    }
 
    .foundation-subtitle {
        font-size: 15px;
        color: var(--color-text-secondary);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }
 
    /* Grid */
    .foundation-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-bottom: 40px;
    }
 
    /* Cards - Glass Morphism Style */
    .foundation-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(52, 211, 153, 0.4);
        box-shadow: 0 10px 15px rgba(52, 211, 153, 0.25);
        border-radius: 1.75rem;
        padding: 2rem;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
 
    .foundation-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
        transform: translateY(-4px);
    }
 
    .card-number {
        font-size: 24px;
        font-weight: 600;
        color: var(--color-text-primary);
        opacity: 0.6;
    }
 
    .card-title {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        line-height: 1.3;
    }
 
    .card-text {
        font-size: 14px;
        margin: 0;
        line-height: 1.6;
    }
 
    /* Insight Box */
    .foundation-insight {
        padding: 24px 32px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 1.75rem;
        text-align: center;
    }

    .foundation-insight p {
        font-size: 14px;
        color: var(--color-text-secondary);
        margin: 0;
        line-height: 1.6;
    }

    .foundation-insight strong {
        color: var(--color-text-primary);
        font-weight: 500;
    }

    /* Responsive */
    @media (max-width: 1200px) {
        .foundation-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .foundation-section {
            padding: 60px 0;
        }

        .foundation-banner {
            margin-bottom: 40px;
            padding: 30px 20px;
        }

        .foundation-title {
            font-size: 26px;
        }

        .foundation-grid {
            grid-template-columns: 1fr;
            gap: 16px;
            margin-bottom: 32px;
        }

        .foundation-card {
            padding: 1.5rem;
            gap: 10px;
        }

        .card-title {
            font-size: 15px;
        }

        .card-text {
            font-size: 13px;
        }
    }

    @media (max-width: 480px) {
        .foundation-section {
            padding: 40px 0;
        }

        .foundation-banner {
            margin-bottom: 30px;
            padding: 20px 16px;
        }

        .foundation-title {
            font-size: 22px;
        }

        .foundation-subtitle {
            font-size: 14px;
        }

        .foundation-card {
            padding: 1.25rem;
        }

        .foundation-insight {
            padding: 20px 24px;
        }

        .foundation-insight p {
            font-size: 13px;
        }
    }