@import url('style.css');

/* ========================================
   VARIABLES GOAPP
   ======================================== */
:root {
    --goapp-primary: #DFBF12;
    --goapp-secondary: #f1c40f;
    --goapp-accent: #f39c12;
    --goapp-dark: #1a1a1a;
    --goapp-light: #f8fafc;
    --goapp-text: #2d2d2d;
    --goapp-gray: #6b7280;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
    padding: 80px 0;
}

.hero-left,
.hero-right {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    display: inline-block;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

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

/* ========================================
   HERO
   ======================================== */
.goapp-hero {
    background: linear-gradient(135deg, var(--goapp-dark) 0%, #000 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.goapp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23DFBF12" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: .3;
}

.goapp-hero-badge {
    background: rgba(223, 191, 18, .15);
    border: 1px solid rgba(223, 191, 18, .3);
    color: #DFBF12;
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-flex;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.goapp-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.goapp-hero-subtitle {
    font-size: 1.5rem;
    color: var(--goapp-primary);
    margin-bottom: 20px;
    font-weight: 500;
}

.goapp-hero-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.goapp-btn-primary {
    background: linear-gradient(45deg, var(--goapp-primary), var(--goapp-secondary));
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(223, 191, 18, .4);
    margin-right: 15px;
    margin-bottom: 15px;
}

.goapp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 191, 18, .6);
    color: #000;
}

.goapp-btn-secondary {
    background: transparent;
    color: var(--goapp-primary);
    padding: 15px 30px;
    border: 2px solid var(--goapp-primary);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .3s ease;
    margin-bottom: 15px;
}

.goapp-btn-secondary:hover {
    background: var(--goapp-primary);
    color: #000;
    transform: translateY(-2px);
}

/* ========================================
   SECCIONES GENÉRICAS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--goapp-primary);
    opacity: .9;
}

/* ========================================
   ABOUT
   ======================================== */
.goapp-about {
    background: #ffffff;
    padding: 80px 0;
}

.about-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    text-align: center;
}

.about-card .section-title {
    color: var(--goapp-text);
}

.about-text {
    color: var(--goapp-gray);
    font-size: 1.05rem;
}

/* ========================================
   OFERTA (SOLUCIONES)
   ======================================== */
.goapp-offer {
    background: linear-gradient(135deg, var(--goapp-dark) 0%, #000 100%);
    padding: 80px 0;
    position: relative;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.solution-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(223, 191, 18, .2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all .3s ease;
    backdrop-filter: blur(10px);
    color: #fff;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--goapp-primary);
    box-shadow: 0 10px 30px rgba(223, 191, 18, .2);
}

.solution-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.solution-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.solution-text {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* ========================================
   SECCIONES DETALLE (features)
   ======================================== */
.goapp-section {
    background: linear-gradient(135deg, var(--goapp-dark) 0%, #000 100%);
    padding: 80px 0;
    color: #fff;
}

.goapp-section-light {
    background: #ffffff;
    color: var(--goapp-text);
}

.goapp-section-light .section-title {
    color: var(--goapp-text);
}

.goapp-section-light .section-subtitle {
    color: var(--goapp-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(223, 191, 18, .2);
    border-radius: 16px;
    padding: 20px;
    transition: all .3s ease;
    color: #fff;
}

.goapp-section-light .feature-item {
    background: #fff;
    border: 2px solid transparent;
    color: var(--goapp-text);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: var(--goapp-primary);
    box-shadow: 0 10px 30px rgba(223, 191, 18, .2);
}

/* ========================================
   BENEFICIOS
   ======================================== */
.goapp-benefits {
    background: linear-gradient(135deg, var(--goapp-dark) 0%, #000 100%);
    padding: 80px 0;
    color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(223, 191, 18, .2);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all .3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--goapp-primary);
    box-shadow: 0 10px 30px rgba(223, 191, 18, .2);
}

/* Chips/Pastillas de beneficios */
.benefit-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.benefit-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(223, 191, 18, .2);
    color: #fff;
    font-weight: 600;
    transition: all .25s ease;
}

.benefit-chip:hover {
    transform: translateY(-2px);
    border-color: var(--goapp-primary);
    box-shadow: 0 8px 24px rgba(223, 191, 18, .2);
}

/* ========================================
   INTEGRACIONES
   ======================================== */
.goapp-integrations {
    background: #ffffff;
    padding: 80px 0;
}

.goapp-integrations .section-title {
    color: var(--goapp-text);
}

.goapp-integrations .section-subtitle {
    color: var(--goapp-gray);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.integration-group {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    border: 2px solid #f1f5f9;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

.group-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--goapp-text);
    margin-bottom: 8px;
}

.integration-group p {
    color: var(--goapp-gray);
}

/* ========================================
   TECNOLOGÍAS
   ======================================== */
.goapp-tech {
    background: #fff;
    padding: 80px 0;
}

.goapp-tech .section-title {
    color: var(--goapp-text);
}

.goapp-tech .section-subtitle {
    color: var(--goapp-gray);
}

.tech-groups {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tech-group-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--goapp-text);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.tech-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all .3s ease;
}

.tech-item:hover {
    transform: translateY(-4px);
    border-color: var(--goapp-primary);
    box-shadow: 0 10px 25px rgba(223, 191, 18, .2);
}

.tech-item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(223, 191, 18, .2));
}

.tech-item span {
    font-size: .9rem;
    color: #374151;
    font-weight: 600;
}

/* ========================================
   PROCESO (onboarding)
   ======================================== */
.goapp-process {
    background: #ffffff;
    padding: 80px 0;
    color: var(--goapp-text);
}

.goapp-process .section-title {
    color: var(--goapp-text);
}

.goapp-process .section-subtitle {
    color: var(--goapp-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.process-step {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all .3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.process-step:hover {
    transform: translateY(-3px);
    border-color: var(--goapp-primary);
    box-shadow: 0 10px 30px rgba(223, 191, 18, .15);
}

.process-number {
    font-size: 2rem;
    margin-bottom: 12px;
}

.process-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-content p {
    font-size: .95rem;
    color: var(--goapp-gray);
}

/* ========================================
   MÉTRICAS
   ======================================== */
.goapp-impact {
    background: linear-gradient(135deg, var(--goapp-primary) 0%, var(--goapp-secondary) 100%);
    color: #000;
    padding: 80px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.impact-item {
    background: rgba(255, 255, 255, .3);
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.impact-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.impact-text {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

/* ========================================
   CASOS DE USO / INDUSTRIAS
   ======================================== */
.goapp-cases {
    background: #ffffff;
    padding: 80px 0;
}

.goapp-cases .section-title {
    color: var(--goapp-text);
}

.goapp-cases .section-subtitle {
    color: var(--goapp-gray);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.case-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: all .3s ease;
    color: var(--goapp-text);
}

.case-card:hover {
    transform: translateY(-3px);
    border-color: var(--goapp-primary);
    box-shadow: 0 10px 30px rgba(223, 191, 18, .15);
}

/* ========================================
   TESTIMONIOS
   ======================================== */
.goapp-testimonials {
    background: #fff;
    padding: 80px 0;
}

.goapp-testimonials .section-title {
    color: var(--goapp-text);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.testimonial {
    background: #f8fafc;
    border-radius: 18px;
    padding: 28px;
    border-left: 4px solid var(--goapp-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--goapp-text);
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-author {
    color: var(--goapp-primary);
    font-weight: 600;
}

/* ========================================
   PLANES
   ======================================== */
.goapp-pricing {
    background: linear-gradient(135deg, var(--goapp-dark) 0%, #000 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #e5e7eb;
    margin-bottom: 20px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 10px;
}

.plan-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(223, 191, 18, .2);
    border-radius: 16px;
    padding: 24px;
    transition: all .3s ease;
}

.plan-card.featured {
    border-color: var(--goapp-primary);
    box-shadow: 0 12px 30px rgba(223, 191, 18, .2);
}

.plan-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-desc {
    color: #cccccc;
    margin-bottom: 16px;
}

.plan-btn {
    background: var(--goapp-primary);
    color: #000;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all .3s ease;
}

.plan-btn:hover {
    background: var(--goapp-secondary);
    transform: translateY(-2px);
}

/* ========================================
   FAQ
   ======================================== */
.goapp-faq {
    background: #ffffff;
    padding: 80px 0;
}

.goapp-faq .section-title {
    color: var(--goapp-text);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 2px solid #f1f5f9;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

.faq-item h4 {
    margin-bottom: 6px;
    color: var(--goapp-text);
}

.faq-item p {
    color: var(--goapp-gray);
}

/* ========================================
   SLA
   ======================================== */
.goapp-sla {
    background: linear-gradient(135deg, var(--goapp-dark) 0%, #000 100%);
    padding: 80px 0;
    color: #fff;
}

.sla-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(223, 191, 18, .2);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    transition: all .3s ease;
}

.sla-card:hover {
    transform: translateY(-3px);
    border-color: var(--goapp-primary);
    box-shadow: 0 10px 30px rgba(223, 191, 18, .2);
}

/* ========================================
   CTA FINAL
   ======================================== */
.goapp-cta {
    background: linear-gradient(135deg, var(--goapp-primary) 0%, var(--goapp-secondary) 100%);
    color: #000;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, .8);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .goapp-hero-title {
        font-size: 2.5rem;
    }

    .goapp-hero-subtitle {
        font-size: 1.2rem;
    }

    .benefits-grid,
    .solutions-grid,
    .tech-grid,
    .cases-grid,
    .impact-grid,
    .plans-grid,
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .goapp-hero-title {
        font-size: 2rem;
    }

    .goapp-btn-primary,
    .goapp-btn-secondary {
        width: 100%;
        justify-content: center;
        margin-right: 0;
    }

    .container {
        padding: 0 15px;
    }
}

/* ========================================
   TABS (Tecnologías)
   ======================================== */
.tabs {
    margin-top: 20px;
}

.tab-list {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(223, 191, 18, .2);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: all .25s ease;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: var(--goapp-primary);
    box-shadow: 0 8px 24px rgba(223, 191, 18, .2);
    transform: translateY(-2px);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Tabs sobre fondo claro (sección Tecnologías) */
.goapp-tech .tab-btn {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: var(--goapp-text);
}

.goapp-tech .tab-btn.active,
.goapp-tech .tab-btn:hover {
    background: #fff;
    border-color: var(--goapp-primary);
    color: var(--goapp-text);
    box-shadow: 0 8px 24px rgba(223, 191, 18, .2);
}

/* ========================================
   STEPPER (Implementación)
   ======================================== */
.stepper {
    counter-reset: step;
    display: grid;
    gap: 20px;
}

.step {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    border: 2px solid transparent;
}

.step::after {
    content: "";
    position: absolute;
    left: 24px;
    top: calc(100% + 2px);
    width: 2px;
    height: 20px;
    background: #e5e7eb;
}

.step:last-child::after {
    display: none;
}

.step-index {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--goapp-primary), var(--goapp-secondary));
    font-weight: 800;
    color: #000;
    display: grid;
    place-items: center;
}

.step:hover {
    border-color: var(--goapp-primary);
    box-shadow: 0 10px 30px rgba(223, 191, 18, .15);
    transform: translateY(-2px);
}

/* ========================================
   CHECKLIST (Beneficios)
   ======================================== */
.checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.check-item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(223, 191, 18, .2);
    border-radius: 14px;
    padding: 14px 16px;
    transition: all .25s ease;
    color: #fff;
}

.check-item:hover {
    border-color: var(--goapp-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(223, 191, 18, .2);
}

/* ========================================
   CHIPS (Industrias)
   ======================================== */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    background: #fff;
    color: var(--goapp-text);
    border-radius: 999px;
    padding: 10px 14px;
    border: 2px solid #f1f5f9;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .06);
    transition: all .2s ease;
}

.chip:hover {
    border-color: var(--goapp-primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(223, 191, 18, .15);
}

/* ========================================
   PLAN MATRIX (Planes)
   ======================================== */
.plan-matrix {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.matrix-header,
.matrix-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 8px;
}

.matrix-header .matrix-cell {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(223, 191, 18, .25);
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
}

.matrix-row .matrix-cell {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(223, 191, 18, .15);
    color: #e5e7eb;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
}

.matrix-row .feature {
    text-align: left;
    color: #fff;
    font-weight: 600;
}

.matrix-row .matrix-cell:nth-child(n+2) {
    font-weight: 800;
}

/* ========================================
   ACCORDION (FAQ)
   ======================================== */
.accordion {
    display: grid;
    gap: 10px;
}

.accordion-item {
    background: #fff;
    border: 2px solid #f1f5f9;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    background: #fff;
    color: var(--goapp-text);
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: "＋";
    color: var(--goapp-gray);
}

.accordion-item.open .accordion-header::after {
    content: "－";
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding: 0 18px;
}

.accordion-item.open .accordion-content {
    padding: 0 18px 16px;
    max-height: 400px;
}

/* Responsive tweaks for matrix */
@media (max-width: 768px) {

    .matrix-header,
    .matrix-row {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
    }
}